cocoaTouch/MainMenuViewController.h
author smxx
Wed, 03 Feb 2010 13:02:28 +0000
changeset 2742 21c0d2e69753
parent 2740 03df0573a9fd
child 2743 39d097ac2276
permissions -rw-r--r--
Frontend: + Changed save and demo file extensions to ".<protocol>.hwd" and ".<protocol>.hws" to make file associations easier/constant + Added icons to savegame and demo file list (might require some redrawing/updating)

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

#import <UIKit/UIKit.h>
#import "SettingsViewController.h"

@interface MainMenuViewController : UIViewController {
	UILabel *versionLabel;
	SettingsViewController *settingsViewController;
}

@property (nonatomic, retain) IBOutlet UILabel *versionLabel;
@property (nonatomic, retain) SettingsViewController *settingsViewController;

-(IBAction) startPlaying;
-(IBAction) notYetImplemented;
-(IBAction) switchViews:(id)sender;
@end