author | koda |
Sat, 28 Aug 2010 05:03:26 +0200 | |
changeset 3781 | 2bfda544ae48 |
parent 3703 | 12d17c6e8855 |
child 3829 | 81db3c85784b |
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; |
|
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3703
diff
changeset
|
14 |
NSMutableDictionary *schemeDictionary; |
3547 | 15 |
NSArray *basicSettingList; |
16 |
NSArray *gameModifierArray; |
|
17 |
} |
|
18 |
||
3659 | 19 |
@property (nonatomic, retain) NSString *schemeName; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3703
diff
changeset
|
20 |
@property (nonatomic, retain) NSMutableDictionary *schemeDictionary; |
3547 | 21 |
@property (nonatomic, retain) NSArray *basicSettingList; |
22 |
@property (nonatomic, retain) NSArray *gameModifierArray; |
|
23 |
||
24 |
@end |