cocoaTouch/SchemeSettingsViewController.h
author nemo
Sat, 05 Jun 2010 19:00:42 +0000
changeset 3497 9327fae93244
parent 3479 972ae3ec178a
permissions -rw-r--r--
Remove decrement of iterator health. Might fix weird health bug.

//
//  SchemeSettingsViewController.h
//  HedgewarsMobile
//
//  Created by Vittorio on 19/04/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>
@class SingleSchemeViewController;

@interface SchemeSettingsViewController : UITableViewController {
    NSMutableArray *listOfSchemes;
    SingleSchemeViewController *childController;
}

@property (nonatomic, retain) NSMutableArray *listOfSchemes;

@end