project_files/HedgewarsMobile/Classes/MainMenuViewController.h
author koda
Sat, 04 Sep 2010 02:09:24 +0200
changeset 3825 fd6c20cd90e3
parent 3703 12d17c6e8855
child 3829 81db3c85784b
permissions -rw-r--r--
typos, reduced sound size and last minute fixes

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