author | sheepluva |
Mon, 29 Mar 2010 13:41:10 +0000 | |
changeset 3155 | 6ae6c2bd98cb |
parent 3029 | 67483e87590c |
child 3305 | 91074496d5c9 |
permissions | -rw-r--r-- |
2685 | 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> |
|
2740 | 10 |
#import "SettingsViewController.h" |
2685 | 11 |
|
12 |
@interface MainMenuViewController : UIViewController { |
|
13 |
UILabel *versionLabel; |
|
2743 | 14 |
UIView *mainView; |
2740 | 15 |
SettingsViewController *settingsViewController; |
2685 | 16 |
} |
17 |
||
18 |
@property (nonatomic, retain) IBOutlet UILabel *versionLabel; |
|
2743 | 19 |
@property (nonatomic, retain) IBOutlet UIView *mainView; |
2740 | 20 |
@property (nonatomic, retain) SettingsViewController *settingsViewController; |
2685 | 21 |
|
3027 | 22 |
-(void) appear; |
23 |
-(void) disappear; |
|
24 |
||
2685 | 25 |
-(IBAction) startPlaying; |
2687
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
26 |
-(IBAction) notYetImplemented; |
3029
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
27 |
//-(IBAction) switchViews:(id)sender; |
2685 | 28 |
@end |