cocoaTouch/MainMenuViewController.h
author smxx
Tue, 18 May 2010 13:09:57 +0000
changeset 3475 95345f98da19
parent 3465 b290993c0810
permissions -rw-r--r--
Engine: * Modified gas grenade and added graphics to it (better get a nose clip!) * Added the ability to tint visual gears * Added the ability to tint explosion effects * Birdy's eggs now cause a small green explosion

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