cocoaTouch/SettingsViewController.h
author koda
Sat, 16 Jan 2010 06:48:56 +0000
changeset 2697 75880595a9f1
parent 2696 41aa7b56c17b
child 2701 3a8560c00f78
permissions -rw-r--r--
code cleanup and opengles optimizations

//
//  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