project_files/HedgewarsMobile/Classes/MainMenuViewController.h
author koda
Mon, 02 Aug 2010 00:55:24 +0200
changeset 3703 12d17c6e8855
parent 3701 8c449776ebe6
child 3829 81db3c85784b
permissions -rw-r--r--
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up

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

#import <UIKit/UIKit.h>

@class SplitViewRootController;
@class GameConfigViewController;
@class AboutViewController;

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

@property (nonatomic,retain) IBOutlet UILabel *versionLabel;
@property (nonatomic,retain) GameConfigViewController *gameConfigViewController;
@property (nonatomic,retain) SplitViewRootController *settingsViewController;
@property (nonatomic,retain) AboutViewController *aboutViewController;

-(IBAction) switchViews:(id)sender;

@end