3312
|
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 |
|
3332
|
12 |
@interface GeneralSettingsViewController : UITableViewController <UITextFieldDelegate> {
|
|
13 |
NSMutableDictionary *settingsDictionary;
|
|
14 |
UITextField *textFieldBeingEdited;
|
3312
|
15 |
UISwitch *musicSwitch;
|
|
16 |
UISwitch *soundSwitch;
|
|
17 |
UISwitch *altDamageSwitch;
|
3332
|
18 |
BOOL isWriteNeeded;
|
3312
|
19 |
}
|
|
20 |
|
3332
|
21 |
@property (nonatomic, retain) NSMutableDictionary *settingsDictionary;
|
|
22 |
@property (nonatomic, retain) UITextField *textFieldBeingEdited;;
|
3312
|
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
|