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>
|
|
10 |
|
|
11 |
|
|
12 |
@interface SingleWeaponViewController : UITableViewController {
|
3621
|
13 |
UIImage *ammoStoreImage;
|
|
14 |
NSArray *ammoNames;
|
|
15 |
|
|
16 |
char *quantity;
|
|
17 |
char *probability;
|
|
18 |
char *delay;
|
|
19 |
char *crateness;
|
3547
|
20 |
}
|
|
21 |
|
3621
|
22 |
@property (nonatomic,retain) UIImage *ammoStoreImage;
|
|
23 |
@property (nonatomic,retain) NSArray *ammoNames;
|
|
24 |
|
|
25 |
|
3547
|
26 |
@end
|