author | koda |
Thu, 02 Sep 2010 23:44:35 +0200 | |
changeset 3816 | 7b74aa003f52 |
parent 3703 | 12d17c6e8855 |
child 3829 | 81db3c85784b |
permissions | -rw-r--r-- |
3547 | 1 |
// |
2 |
// SingleTeamViewController.h |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 02/04/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import <UIKit/UIKit.h> |
|
3660 | 10 |
#import "EditableCellView.h" |
3547 | 11 |
|
12 |
@class HogHatViewController; |
|
13 |
@class GravesViewController; |
|
14 |
@class VoicesViewController; |
|
15 |
@class FortsViewController; |
|
16 |
@class FlagsViewController; |
|
17 |
@class LevelViewController; |
|
3660 | 18 |
|
19 |
@interface SingleTeamViewController : UITableViewController <EditableCellViewDelegate> { |
|
3547 | 20 |
NSMutableDictionary *teamDictionary; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3660
diff
changeset
|
21 |
|
3547 | 22 |
NSString *teamName; |
23 |
UIImage *normalHogSprite; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3660
diff
changeset
|
24 |
|
3547 | 25 |
NSArray *secondaryItems; |
3816 | 26 |
NSArray *moreSecondaryItems; |
3547 | 27 |
BOOL isWriteNeeded; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3660
diff
changeset
|
28 |
|
3547 | 29 |
HogHatViewController *hogHatViewController; |
30 |
GravesViewController *gravesViewController; |
|
31 |
VoicesViewController *voicesViewController; |
|
32 |
FortsViewController *fortsViewController; |
|
33 |
FlagsViewController *flagsViewController; |
|
34 |
LevelViewController *levelViewController; |
|
35 |
} |
|
36 |
||
37 |
@property (nonatomic,retain) NSMutableDictionary *teamDictionary; |
|
38 |
@property (nonatomic,retain) NSString *teamName; |
|
39 |
@property (nonatomic,retain) UIImage *normalHogSprite; |
|
40 |
@property (nonatomic,retain) NSArray *secondaryItems; |
|
3816 | 41 |
@property (nonatomic,retain) NSArray *moreSecondaryItems; |
3547 | 42 |
|
43 |
-(void) writeFile; |
|
44 |
-(void) setWriteNeeded; |
|
45 |
||
46 |
@end |