cocoaTouch/MainMenuViewController.h
author koda
Sun, 16 May 2010 17:23:30 +0000
changeset 3463 23c50be687a9
parent 3356 3ae3fccb439e
child 3465 b290993c0810
permissions -rw-r--r--
update sdl functions to latest revision add a grayscale utility to uiimage implement a preliminary support for chatting revert rotation changes for engine lots of code cleanup restored main event loop in hwengine fix some sdl bindings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     1
//
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     2
//  MainMenuViewController.h
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     3
//  hwengine
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     4
//
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     5
//  Created by Vittorio on 08/01/10.
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     7
//
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     8
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    10
3356
3ae3fccb439e add missing controller stubs
koda
parents: 3312
diff changeset
    11
@class SplitViewRootController;
3ae3fccb439e add missing controller stubs
koda
parents: 3312
diff changeset
    12
@class GameConfigViewController;
3ae3fccb439e add missing controller stubs
koda
parents: 3312
diff changeset
    13
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    14
@interface MainMenuViewController : UIViewController {
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    15
    UILabel *versionLabel;
3356
3ae3fccb439e add missing controller stubs
koda
parents: 3312
diff changeset
    16
    SplitViewRootController *splitRootViewController;
3ae3fccb439e add missing controller stubs
koda
parents: 3312
diff changeset
    17
    GameConfigViewController *gameConfigViewController;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    18
}
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    19
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    20
@property (nonatomic,retain) IBOutlet UILabel *versionLabel;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    21
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    22
-(IBAction) switchViews:(id)sender;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    23
@end