3361
|
1 |
//
|
|
2 |
// HogButtonView.h
|
|
3 |
// HedgewarsMobile
|
|
4 |
//
|
|
5 |
// Created by Vittorio on 20/04/10.
|
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
7 |
//
|
|
8 |
|
|
9 |
#import <UIKit/UIKit.h>
|
|
10 |
|
|
11 |
|
|
12 |
@interface HogButtonView : UIButton {
|
|
13 |
NSInteger numberOfHogs;
|
|
14 |
UIImage *singleHog;
|
3364
|
15 |
NSMutableDictionary *ownerDictionary;
|
3361
|
16 |
}
|
|
17 |
|
|
18 |
@property (nonatomic,retain) UIImage *singleHog;
|
3364
|
19 |
@property (nonatomic) NSInteger numberOfHogs;
|
|
20 |
@property (nonatomic,retain) NSMutableDictionary *ownerDictionary;
|
3361
|
21 |
|
3364
|
22 |
-(void) drawManyHogs:(NSInteger) hogs;
|
|
23 |
-(void) addOne;
|
3361
|
24 |
|
|
25 |
@end
|