project_files/HedgewarsMobile/Classes/SingleSchemeViewController.h
author koda
Fri, 03 Sep 2010 02:03:44 +0200
changeset 3823 cca9bfb88a24
parent 3781 2bfda544ae48
child 3829 81db3c85784b
permissions -rw-r--r--
also remove sinegun from the ifrontend for whatever reason

//
//  SingleSchemeViewController.h
//  Hedgewars
//
//  Created by Vittorio on 23/05/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "EditableCellView.h"

@interface SingleSchemeViewController : UITableViewController <EditableCellViewDelegate> {
    NSString *schemeName;
    NSMutableDictionary *schemeDictionary;
    NSArray *basicSettingList;
    NSArray *gameModifierArray;
}

@property (nonatomic, retain) NSString *schemeName;
@property (nonatomic, retain) NSMutableDictionary *schemeDictionary;
@property (nonatomic, retain) NSArray *basicSettingList;
@property (nonatomic, retain) NSArray *gameModifierArray;

@end