cocoaTouch/MainMenuViewController.h
author koda
Mon, 31 May 2010 19:33:42 +0000
changeset 3487 b1d00f1950c8
parent 3465 b290993c0810
permissions -rw-r--r--
add some memory aware code revert sdl calls to past implementation (the one that did not crash) add some debug methods found online

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