project_files/HedgewarsMobile/Classes/MainMenuViewController.h
author koda
Mon, 30 Aug 2010 01:38:46 +0200
changeset 3789 c3eb56754e92
parent 3703 12d17c6e8855
child 3829 81db3c85784b
permissions -rw-r--r--
added a smaller version of forts, fixed a couple of regressions

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