author | koda |
Fri, 15 Oct 2010 01:10:59 +0200 | |
changeset 3977 | 9df7b4812da9 |
parent 3940 | cc29628976cc |
child 3978 | 9660600e43cb |
permissions | -rw-r--r-- |
3924 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
3 |
* Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com> |
|
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
17 |
* |
|
18 |
* File created on 03/10/2010. |
|
19 |
*/ |
|
20 |
||
21 |
||
22 |
#import <UIKit/UIKit.h> |
|
23 |
||
24 |
||
25 |
@interface AmmoMenuViewController : UIViewController { |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
26 |
NSArray *buttonsArray; |
3977 | 27 |
NSArray *imagesArray; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
28 |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3935
diff
changeset
|
29 |
uint8_t *delay; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
30 |
CGPoint startingPoint; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
31 |
BOOL isVisible; |
3924 | 32 |
} |
33 |
||
3977 | 34 |
@property (retain) NSArray *buttonsArray; |
35 |
@property (retain) NSArray *imagesArray; |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
36 |
@property (assign) BOOL isVisible; |
3924 | 37 |
|
38 |
-(void) buttonPressed:(id)sender; |
|
3935 | 39 |
-(void) updateAmmoVisuals; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
40 |
-(void) appearInView:(UIView *)container; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
41 |
-(void) disappear; |
3924 | 42 |
|
43 |
@end |