diff -r cbf71e938164 -r 972ae3ec178a cocoaTouch/SingleSchemeViewController.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cocoaTouch/SingleSchemeViewController.h Sun May 23 22:05:59 2010 +0000 @@ -0,0 +1,25 @@ +// +// SingleSchemeViewController.h +// Hedgewars +// +// Created by Vittorio on 23/05/10. +// Copyright 2010 __MyCompanyName__. All rights reserved. +// + +#import + + +@interface SingleSchemeViewController : UITableViewController { + UITextField *textFieldBeingEdited; + NSMutableArray *schemeArray; + + NSArray *basicSettingList; + NSArray *gameModifierArray; +} + +@property (nonatomic, retain) UITextField *textFieldBeingEdited; +@property (nonatomic, retain) NSMutableArray *schemeArray; +@property (nonatomic, retain) NSArray *basicSettingList; +@property (nonatomic, retain) NSArray *gameModifierArray; + +@end