project_files/HedgewarsMobile/Classes/GeneralSettingsViewController.h
changeset 3546 ccf4854df294
parent 3514 59dbd31e9953
child 3547 02875b1145b7
equal deleted inserted replaced
3545:b07ee704f35d 3546:ccf4854df294
     1 //
       
     2 //  SettingsViewController.h
       
     3 //  hwengine
       
     4 //
       
     5 //  Created by Vittorio on 08/01/10.
       
     6 //  Copyright 2010 __MyCompanyName__. All rights reserved.
       
     7 //
       
     8 
       
     9 #import <UIKit/UIKit.h>
       
    10 
       
    11 
       
    12 @interface GeneralSettingsViewController : UITableViewController <UITextFieldDelegate> {
       
    13     NSMutableDictionary *settingsDictionary;
       
    14 	UITextField *textFieldBeingEdited;
       
    15 	UISwitch *musicSwitch;
       
    16 	UISwitch *soundSwitch;
       
    17 	UISwitch *altDamageSwitch;
       
    18     BOOL isWriteNeeded;
       
    19 }
       
    20 
       
    21 @property (nonatomic, retain) NSMutableDictionary *settingsDictionary;
       
    22 @property (nonatomic, retain) UITextField *textFieldBeingEdited;;
       
    23 @property (nonatomic, retain) UISwitch *musicSwitch;
       
    24 @property (nonatomic, retain) UISwitch *soundSwitch;
       
    25 @property (nonatomic, retain) UISwitch *altDamageSwitch;
       
    26 
       
    27 #define kNetworkFields 0
       
    28 #define kAudioFields 1
       
    29 #define kOtherFields 2
       
    30 
       
    31 @end