author | smaxx |
Thu, 02 Sep 2010 19:21:41 +0200 | |
changeset 3811 | 967363197f01 |
parent 3782 | dc3531e49e4c |
child 3829 | 81db3c85784b |
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; |
|
3782 | 15 |
NSString *description; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3659
diff
changeset
|
16 |
|
3621 | 17 |
UIImage *ammoStoreImage; |
18 |
NSArray *ammoNames; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3659
diff
changeset
|
19 |
|
3621 | 20 |
char *quantity; |
21 |
char *probability; |
|
22 |
char *delay; |
|
23 |
char *crateness; |
|
3547 | 24 |
} |
25 |
||
3659 | 26 |
@property (nonatomic,retain) NSString *weaponName; |
3782 | 27 |
@property (nonatomic,retain) NSString *description; |
3621 | 28 |
@property (nonatomic,retain) UIImage *ammoStoreImage; |
29 |
@property (nonatomic,retain) NSArray *ammoNames; |
|
30 |
||
3659 | 31 |
-(void) saveAmmos; |
3621 | 32 |
|
3547 | 33 |
@end |