3621
|
1 |
//
|
|
2 |
// WeaponCellView.h
|
|
3 |
// Hedgewars
|
|
4 |
//
|
|
5 |
// Created by Vittorio on 03/07/10.
|
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
7 |
//
|
|
8 |
|
|
9 |
#import <UIKit/UIKit.h>
|
|
10 |
|
|
11 |
|
|
12 |
@interface WeaponCellView : UITableViewCell {
|
|
13 |
UILabel *weaponName;
|
|
14 |
UIImageView *weaponIcon;
|
|
15 |
|
|
16 |
UIButton *initialQt;
|
|
17 |
UIButton *probability;
|
|
18 |
UIButton *delay;
|
|
19 |
UIButton *crateQt;
|
|
20 |
}
|
|
21 |
|
|
22 |
@property (nonatomic,retain) UILabel *weaponName;
|
|
23 |
@property (nonatomic,retain) UIImageView *weaponIcon;
|
|
24 |
|
|
25 |
@property (nonatomic,retain) UIButton *initialQt;
|
|
26 |
@property (nonatomic,retain) UIButton *probability;
|
|
27 |
@property (nonatomic,retain) UIButton *delay;
|
|
28 |
@property (nonatomic,retain) UIButton *crateQt;
|
|
29 |
|
|
30 |
@end
|