project_files/HedgewarsMobile/Classes/SchemeWeaponConfigViewController.h
changeset 5455 df05cdb998ed
parent 5451 e359a79e3d08
child 6115 485cfecadc9a
equal deleted inserted replaced
5453:ea6f7631df4a 5455:df05cdb998ed
    23 
    23 
    24 
    24 
    25 @interface SchemeWeaponConfigViewController : UITableViewController {
    25 @interface SchemeWeaponConfigViewController : UITableViewController {
    26     NSArray *listOfSchemes;
    26     NSArray *listOfSchemes;
    27     NSArray *listOfWeapons;
    27     NSArray *listOfWeapons;
       
    28     NSArray *listOfScripts;
    28 
    29 
    29     NSIndexPath *lastIndexPath_sc;
    30     NSIndexPath *lastIndexPath_sc;
    30     NSIndexPath *lastIndexPath_we;
    31     NSIndexPath *lastIndexPath_we;
       
    32     NSIndexPath *lastIndexPath_lu;
    31 
    33 
    32     NSString *selectedScheme;
    34     NSString *selectedScheme;
    33     NSString *selectedWeapon;
    35     NSString *selectedWeapon;
       
    36     NSString *selectedScript;
       
    37     NSString *scriptCommand;
    34 
    38 
       
    39     UISegmentedControl *topControl;
    35     BOOL hideSections;
    40     BOOL hideSections;
    36 }
    41 }
    37 
    42 
    38 @property (nonatomic,retain) NSArray *listOfSchemes;
    43 @property (nonatomic,retain) NSArray *listOfSchemes;
    39 @property (nonatomic,retain) NSArray *listOfWeapons;
    44 @property (nonatomic,retain) NSArray *listOfWeapons;
       
    45 @property (nonatomic,retain) NSArray *listOfScripts;
    40 @property (nonatomic,retain) NSIndexPath *lastIndexPath_sc;
    46 @property (nonatomic,retain) NSIndexPath *lastIndexPath_sc;
    41 @property (nonatomic,retain) NSIndexPath *lastIndexPath_we;
    47 @property (nonatomic,retain) NSIndexPath *lastIndexPath_we;
       
    48 @property (nonatomic,retain) NSIndexPath *lastIndexPath_lu;
    42 @property (nonatomic,retain) NSString *selectedScheme;
    49 @property (nonatomic,retain) NSString *selectedScheme;
    43 @property (nonatomic,retain) NSString *selectedWeapon;
    50 @property (nonatomic,retain) NSString *selectedWeapon;
       
    51 @property (nonatomic,retain) NSString *selectedScript;
       
    52 @property (nonatomic,retain) NSString *scriptCommand;
       
    53 @property (nonatomic,retain) UISegmentedControl *topControl;
       
    54 @property (assign) BOOL hideSections;
    44 
    55 
    45 -(void) fillSections;
    56 -(void) fillSections;
    46 -(void) emptySections;
    57 -(void) emptySections;
    47 
    58 
    48 @end
    59 @end