author | koda |
Wed, 21 Apr 2010 01:57:23 +0000 | |
changeset 3361 | cfc6cd502f85 |
child 3364 | e5403e2bf02c |
permissions | -rw-r--r-- |
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; |
|
15 |
} |
|
16 |
||
17 |
@property (nonatomic,retain) UIImage *singleHog; |
|
18 |
||
19 |
-(void) drawManyHogs; |
|
20 |
||
21 |
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; |
|
22 |
||
23 |
@end |