cocoaTouch/GeneralSettingsViewController.h
changeset 3312 6d8f1c76756d
child 3332 3c90a923f156
equal deleted inserted replaced
3311:18436bb84bfe 3312:6d8f1c76756d
       
     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 <UIActionSheetDelegate> {
       
    13     NSDictionary *dataDict;
       
    14 	NSString *username;
       
    15 	NSString *password;
       
    16 	UISwitch *musicSwitch;
       
    17 	UISwitch *soundSwitch;
       
    18 	UISwitch *altDamageSwitch;
       
    19 }
       
    20 
       
    21 @property (nonatomic, retain) NSDictionary *dataDict;
       
    22 @property (nonatomic, retain) NSString *username;
       
    23 @property (nonatomic, retain) NSString *password;
       
    24 @property (nonatomic, retain) UISwitch *musicSwitch;
       
    25 @property (nonatomic, retain) UISwitch *soundSwitch;
       
    26 @property (nonatomic, retain) UISwitch *altDamageSwitch;
       
    27 
       
    28 #define kNetworkFields 0
       
    29 #define kAudioFields 1
       
    30 #define kOtherFields 2
       
    31 
       
    32 @end