equal
deleted
inserted
replaced
|
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 |