project_files/HedgewarsMobile/Classes/GeneralSettingsViewController.h
author koda
Tue, 20 Jul 2010 05:37:58 +0200
changeset 3660 bc125bea5849
parent 3547 02875b1145b7
child 3662 a44406f4369b
permissions -rw-r--r--
complete settings page rework

//
//  SettingsViewController.h
//  hwengine
//
//  Created by Vittorio on 08/01/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>


@interface GeneralSettingsViewController : UITableViewController <UITextFieldDelegate> {
    NSMutableDictionary *settingsDictionary;
    UITextField *textFieldBeingEdited;
    UISwitch *musicSwitch;
    UISwitch *soundSwitch;
    UISwitch *altDamageSwitch;
}

@property (nonatomic, retain) NSMutableDictionary *settingsDictionary;
@property (nonatomic, retain) UITextField *textFieldBeingEdited;;
@property (nonatomic, retain) UISwitch *musicSwitch;
@property (nonatomic, retain) UISwitch *soundSwitch;
@property (nonatomic, retain) UISwitch *altDamageSwitch;

@end