project_files/HedgewarsMobile/Classes/SchemeSettingsViewController.h
author unc0rr
Wed, 23 Jun 2010 22:21:13 +0400
changeset 3543 d84a93b985c1
parent 3514 59dbd31e9953
child 3546 ccf4854df294
permissions -rw-r--r--
Reimplement TOGGLE_READY command
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3356
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     1
//
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     2
//  SchemeSettingsViewController.h
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     3
//  HedgewarsMobile
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     4
//
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     5
//  Created by Vittorio on 19/04/10.
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     7
//
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     8
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
3479
972ae3ec178a initial support for game modifiers (schemes)
koda
parents: 3356
diff changeset
    10
@class SingleSchemeViewController;
3356
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    11
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    12
@interface SchemeSettingsViewController : UITableViewController {
3479
972ae3ec178a initial support for game modifiers (schemes)
koda
parents: 3356
diff changeset
    13
    NSMutableArray *listOfSchemes;
972ae3ec178a initial support for game modifiers (schemes)
koda
parents: 3356
diff changeset
    14
    SingleSchemeViewController *childController;
3356
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    15
}
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    16
3479
972ae3ec178a initial support for game modifiers (schemes)
koda
parents: 3356
diff changeset
    17
@property (nonatomic, retain) NSMutableArray *listOfSchemes;
972ae3ec178a initial support for game modifiers (schemes)
koda
parents: 3356
diff changeset
    18
3356
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    19
@end