author | koda |
Sat, 28 Aug 2010 05:03:26 +0200 | |
changeset 3781 | 2bfda544ae48 |
parent 3703 | 12d17c6e8855 |
child 3829 | 81db3c85784b |
permissions | -rw-r--r-- |
3547 | 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; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3701
diff
changeset
|
13 |
@class AboutViewController; |
3547 | 14 |
|
15 |
@interface MainMenuViewController : UIViewController { |
|
16 |
UILabel *versionLabel; |
|
3701 | 17 |
GameConfigViewController *gameConfigViewController; |
3547 | 18 |
SplitViewRootController *settingsViewController; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3701
diff
changeset
|
19 |
AboutViewController *aboutViewController; |
3547 | 20 |
} |
21 |
||
22 |
@property (nonatomic,retain) IBOutlet UILabel *versionLabel; |
|
3701 | 23 |
@property (nonatomic,retain) GameConfigViewController *gameConfigViewController; |
24 |
@property (nonatomic,retain) SplitViewRootController *settingsViewController; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3701
diff
changeset
|
25 |
@property (nonatomic,retain) AboutViewController *aboutViewController; |
3547 | 26 |
|
27 |
-(IBAction) switchViews:(id)sender; |
|
3701 | 28 |
|
3547 | 29 |
@end |