author | koda |
Sat, 16 Oct 2010 18:35:28 +0200 | |
changeset 3978 | 9660600e43cb |
parent 3977 | 9df7b4812da9 |
child 3981 | 928e2040d34f |
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; |
3978 | 30 |
BOOL *shouldUpdateImage; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
31 |
CGPoint startingPoint; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
32 |
BOOL isVisible; |
3924 | 33 |
} |
34 |
||
3977 | 35 |
@property (retain) NSArray *buttonsArray; |
36 |
@property (retain) NSArray *imagesArray; |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
37 |
@property (assign) BOOL isVisible; |
3924 | 38 |
|
39 |
-(void) buttonPressed:(id)sender; |
|
3935 | 40 |
-(void) updateAmmoVisuals; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
41 |
-(void) appearInView:(UIView *)container; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
42 |
-(void) disappear; |
3924 | 43 |
|
44 |
@end |