equal
deleted
inserted
replaced
1 // |
|
2 // MainMenuViewController.h |
|
3 // hwengine |
|
4 // |
|
5 // Created by Vittorio on 08/01/10. |
|
6 // Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 // |
|
8 |
|
9 #import <UIKit/UIKit.h> |
|
10 |
|
11 @class SplitViewRootController; |
|
12 @class GameConfigViewController; |
|
13 |
|
14 @interface MainMenuViewController : UIViewController { |
|
15 UILabel *versionLabel; |
|
16 SplitViewRootController *settingsViewController; |
|
17 GameConfigViewController *gameConfigViewController; |
|
18 } |
|
19 |
|
20 @property (nonatomic,retain) IBOutlet UILabel *versionLabel; |
|
21 |
|
22 -(IBAction) switchViews:(id)sender; |
|
23 @end |
|