cocoaTouch/SettingsViewController.h
author koda
Fri, 15 Jan 2010 10:03:31 +0000
changeset 2696 41aa7b56c17b
parent 2694 dcd248e04f3d
child 2701 3a8560c00f78
permissions -rw-r--r--
settings are applied to game launch

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

#import <UIKit/UIKit.h>


@interface SettingsViewController : UIViewController {
	UITextField *username;
	UITextField *password;
	UISwitch *musicOn;
	UISwitch *effectsOn;
	UISwitch *altDamageOn;
	UISlider *volumeSlider;
	UILabel *volumeLabel;
}
@property (nonatomic, retain) IBOutlet UITextField *username;
@property (nonatomic, retain) IBOutlet UITextField *password;
@property (nonatomic, retain) IBOutlet UISwitch *musicOn;
@property (nonatomic, retain) IBOutlet UISwitch *effectsOn;
@property (nonatomic, retain) IBOutlet UISwitch *altDamageOn;
@property (nonatomic, retain) IBOutlet UISlider *volumeSlider;
@property (nonatomic, retain) IBOutlet UILabel *volumeLabel;

-(IBAction) sliderChanged: (id)sender;
-(IBAction) backgroundTap: (id)sender;
-(IBAction) textFieldDoneEditing: (id)sender;
@end