equal
deleted
inserted
replaced
5 // Created by Vittorio on 19/06/10. |
5 // Created by Vittorio on 19/06/10. |
6 // Copyright 2010 __MyCompanyName__. All rights reserved. |
6 // Copyright 2010 __MyCompanyName__. All rights reserved. |
7 // |
7 // |
8 |
8 |
9 #import <UIKit/UIKit.h> |
9 #import <UIKit/UIKit.h> |
|
10 #import "EditableCellView.h" |
10 #import "WeaponCellView.h" |
11 #import "WeaponCellView.h" |
11 |
12 |
12 @interface SingleWeaponViewController : UITableViewController <WeaponButtonControllerDelegate> { |
13 @interface SingleWeaponViewController : UITableViewController <EditableCellViewDelegate, WeaponButtonControllerDelegate> { |
|
14 NSString *weaponName; |
|
15 |
13 UIImage *ammoStoreImage; |
16 UIImage *ammoStoreImage; |
14 NSArray *ammoNames; |
17 NSArray *ammoNames; |
15 |
18 |
16 char *quantity; |
19 char *quantity; |
17 char *probability; |
20 char *probability; |
18 char *delay; |
21 char *delay; |
19 char *crateness; |
22 char *crateness; |
20 } |
23 } |
21 |
24 |
|
25 @property (nonatomic,retain) NSString *weaponName; |
22 @property (nonatomic,retain) UIImage *ammoStoreImage; |
26 @property (nonatomic,retain) UIImage *ammoStoreImage; |
23 @property (nonatomic,retain) NSArray *ammoNames; |
27 @property (nonatomic,retain) NSArray *ammoNames; |
24 |
28 |
|
29 -(void) saveAmmos; |
25 |
30 |
26 @end |
31 @end |