project_files/HedgewarsMobile/Classes/WeaponCellView.h
changeset 3621 a8ddf681ba7d
child 3624 304c6d32383a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project_files/HedgewarsMobile/Classes/WeaponCellView.h	Sun Jul 04 00:33:59 2010 +0200
@@ -0,0 +1,30 @@
+//
+//  WeaponCellView.h
+//  Hedgewars
+//
+//  Created by Vittorio on 03/07/10.
+//  Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+
+@interface WeaponCellView : UITableViewCell {
+    UILabel *weaponName;
+    UIImageView *weaponIcon;
+    
+    UIButton *initialQt;
+    UIButton *probability;
+    UIButton *delay;
+    UIButton *crateQt;
+}
+
+@property (nonatomic,retain) UILabel *weaponName;
+@property (nonatomic,retain) UIImageView *weaponIcon;
+    
+@property (nonatomic,retain) UIButton *initialQt;
+@property (nonatomic,retain) UIButton *probability;
+@property (nonatomic,retain) UIButton *delay;
+@property (nonatomic,retain) UIButton *crateQt;
+
+@end