author | koda |
Mon, 02 Aug 2010 00:55:24 +0200 | |
changeset 3703 | 12d17c6e8855 |
parent 3659 | f8d5ac50e307 |
child 3781 | 2bfda544ae48 |
permissions | -rw-r--r-- |
3547 | 1 |
// |
2 |
// SingleSchemeViewController.h |
|
3 |
// Hedgewars |
|
4 |
// |
|
5 |
// Created by Vittorio on 23/05/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import <UIKit/UIKit.h> |
|
3659 | 10 |
#import "EditableCellView.h" |
3547 | 11 |
|
3659 | 12 |
@interface SingleSchemeViewController : UITableViewController <EditableCellViewDelegate> { |
13 |
NSString *schemeName; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3659
diff
changeset
|
14 |
NSMutableArray *schemeArray; |
3547 | 15 |
NSArray *basicSettingList; |
16 |
NSArray *gameModifierArray; |
|
17 |
} |
|
18 |
||
3659 | 19 |
@property (nonatomic, retain) NSString *schemeName; |
3547 | 20 |
@property (nonatomic, retain) NSMutableArray *schemeArray; |
21 |
@property (nonatomic, retain) NSArray *basicSettingList; |
|
22 |
@property (nonatomic, retain) NSArray *gameModifierArray; |
|
23 |
||
24 |
@end |