author | koda |
Mon, 26 Mar 2012 03:24:50 +0200 | |
changeset 6822 | 206db098f8c5 |
parent 6700 | e04da46ee43c |
child 6832 | fae8fd118da9 |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
6700 | 3 |
* Copyright (c) 2009-2012 Vittorio Giovara <vittorio.giovara@gmail.com> |
3829 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
17 |
* |
|
18 |
* File created on 02/04/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import <UIKit/UIKit.h> |
|
23 |
||
24 |
@class HogHatViewController; |
|
25 |
@class GravesViewController; |
|
26 |
@class VoicesViewController; |
|
27 |
@class FortsViewController; |
|
28 |
@class FlagsViewController; |
|
29 |
@class LevelViewController; |
|
3660 | 30 |
|
31 |
@interface SingleTeamViewController : UITableViewController <EditableCellViewDelegate> { |
|
3547 | 32 |
NSMutableDictionary *teamDictionary; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3660
diff
changeset
|
33 |
|
3547 | 34 |
NSString *teamName; |
35 |
UIImage *normalHogSprite; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3660
diff
changeset
|
36 |
|
3547 | 37 |
NSArray *secondaryItems; |
3816 | 38 |
NSArray *moreSecondaryItems; |
3547 | 39 |
BOOL isWriteNeeded; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3660
diff
changeset
|
40 |
|
3547 | 41 |
HogHatViewController *hogHatViewController; |
42 |
GravesViewController *gravesViewController; |
|
43 |
VoicesViewController *voicesViewController; |
|
44 |
FortsViewController *fortsViewController; |
|
45 |
FlagsViewController *flagsViewController; |
|
46 |
LevelViewController *levelViewController; |
|
47 |
} |
|
48 |
||
49 |
@property (nonatomic,retain) NSMutableDictionary *teamDictionary; |
|
50 |
@property (nonatomic,retain) NSString *teamName; |
|
51 |
@property (nonatomic,retain) UIImage *normalHogSprite; |
|
52 |
@property (nonatomic,retain) NSArray *secondaryItems; |
|
3816 | 53 |
@property (nonatomic,retain) NSArray *moreSecondaryItems; |
3547 | 54 |
|
55 |
-(void) writeFile; |
|
56 |
-(void) setWriteNeeded; |
|
57 |
||
58 |
@end |