author | koda |
Wed, 25 Aug 2010 01:30:25 +0200 | |
changeset 3766 | 36b625111609 |
parent 3703 | 12d17c6e8855 |
child 3782 | dc3531e49e4c |
permissions | -rw-r--r-- |
3547 | 1 |
// |
2 |
// SingleWeaponViewController.h |
|
3 |
// Hedgewars |
|
4 |
// |
|
5 |
// Created by Vittorio on 19/06/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import <UIKit/UIKit.h> |
|
3659 | 10 |
#import "EditableCellView.h" |
3624 | 11 |
#import "WeaponCellView.h" |
3547 | 12 |
|
3659 | 13 |
@interface SingleWeaponViewController : UITableViewController <EditableCellViewDelegate, WeaponButtonControllerDelegate> { |
14 |
NSString *weaponName; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3659
diff
changeset
|
15 |
|
3621 | 16 |
UIImage *ammoStoreImage; |
17 |
NSArray *ammoNames; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3659
diff
changeset
|
18 |
|
3621 | 19 |
char *quantity; |
20 |
char *probability; |
|
21 |
char *delay; |
|
22 |
char *crateness; |
|
3547 | 23 |
} |
24 |
||
3659 | 25 |
@property (nonatomic,retain) NSString *weaponName; |
3621 | 26 |
@property (nonatomic,retain) UIImage *ammoStoreImage; |
27 |
@property (nonatomic,retain) NSArray *ammoNames; |
|
28 |
||
3659 | 29 |
-(void) saveAmmos; |
3621 | 30 |
|
3547 | 31 |
@end |