17 */ |
17 */ |
18 |
18 |
19 |
19 |
20 #import <UIKit/UIKit.h> |
20 #import <UIKit/UIKit.h> |
21 |
21 |
22 |
|
23 @class HogHatViewController; |
|
24 @class GravesViewController; |
|
25 @class VoicesViewController; |
|
26 @class FortsViewController; |
|
27 @class FlagsViewController; |
|
28 @class LevelViewController; |
|
29 |
|
30 @interface SingleTeamViewController : UITableViewController <EditableCellViewDelegate> { |
22 @interface SingleTeamViewController : UITableViewController <EditableCellViewDelegate> { |
31 NSMutableDictionary *teamDictionary; |
23 NSMutableDictionary *teamDictionary; |
32 |
24 |
33 NSString *teamName; |
25 NSString *teamName; |
34 UIImage *normalHogSprite; |
26 UIImage *normalHogSprite; |
35 |
27 |
36 NSArray *secondaryItems; |
28 NSArray *secondaryItems; |
37 NSArray *moreSecondaryItems; |
29 NSArray *moreSecondaryItems; |
38 BOOL isWriteNeeded; |
30 BOOL isWriteNeeded; |
39 |
|
40 HogHatViewController *hogHatViewController; |
|
41 GravesViewController *gravesViewController; |
|
42 VoicesViewController *voicesViewController; |
|
43 FortsViewController *fortsViewController; |
|
44 FlagsViewController *flagsViewController; |
|
45 LevelViewController *levelViewController; |
|
46 } |
31 } |
47 |
32 |
48 @property (nonatomic,retain) NSMutableDictionary *teamDictionary; |
33 @property (nonatomic,retain) NSMutableDictionary *teamDictionary; |
49 @property (nonatomic,retain) NSString *teamName; |
34 @property (nonatomic,retain) NSString *teamName; |
50 @property (nonatomic,retain) UIImage *normalHogSprite; |
35 @property (nonatomic,retain) UIImage *normalHogSprite; |