project_files/HedgewarsMobile/Classes/GeneralSettingsViewController.h
changeset 3662 a44406f4369b
parent 3660 bc125bea5849
child 3829 81db3c85784b
equal deleted inserted replaced
3661:2378ada8a6ee 3662:a44406f4369b
     5 //  Created by Vittorio on 08/01/10.
     5 //  Created by Vittorio on 08/01/10.
     6 //  Copyright 2010 __MyCompanyName__. All rights reserved.
     6 //  Copyright 2010 __MyCompanyName__. All rights reserved.
     7 //
     7 //
     8 
     8 
     9 #import <UIKit/UIKit.h>
     9 #import <UIKit/UIKit.h>
       
    10 #import "EditableCellView.h"
    10 
    11 
    11 
    12 @interface GeneralSettingsViewController : UITableViewController <EditableCellViewDelegate> {
    12 @interface GeneralSettingsViewController : UITableViewController <UITextFieldDelegate> {
       
    13     NSMutableDictionary *settingsDictionary;
    13     NSMutableDictionary *settingsDictionary;
    14     UITextField *textFieldBeingEdited;
       
    15     UISwitch *musicSwitch;
       
    16     UISwitch *soundSwitch;
       
    17     UISwitch *altDamageSwitch;
       
    18 }
    14 }
    19 
    15 
    20 @property (nonatomic, retain) NSMutableDictionary *settingsDictionary;
    16 @property (nonatomic, retain) NSMutableDictionary *settingsDictionary;
    21 @property (nonatomic, retain) UITextField *textFieldBeingEdited;;
       
    22 @property (nonatomic, retain) UISwitch *musicSwitch;
       
    23 @property (nonatomic, retain) UISwitch *soundSwitch;
       
    24 @property (nonatomic, retain) UISwitch *altDamageSwitch;
       
    25 
    17 
    26 @end
    18 @end