project_files/HedgewarsMobile/Classes/MainMenuViewController.h
author koda
Fri, 16 Jul 2010 00:18:03 +0200
changeset 3646 a3271158d93b
parent 3547 02875b1145b7
child 3701 8c449776ebe6
permissions -rw-r--r--
don't make the confirmation button disappear, present an alert if game doesn't start

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

#import <UIKit/UIKit.h>

@class SplitViewRootController;
@class GameConfigViewController;

@interface MainMenuViewController : UIViewController {
    UILabel *versionLabel;
    SplitViewRootController *settingsViewController;
    GameConfigViewController *gameConfigViewController;
}

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

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