author | koda |
Fri, 12 Mar 2010 20:36:12 +0000 | |
changeset 2980 | 3cbd5a39aaee |
parent 2743 | 39d097ac2276 |
child 3027 | 32890edaa483 |
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 |
|
22 |
-(IBAction) startPlaying; |
|
2687
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
23 |
-(IBAction) notYetImplemented; |
2740 | 24 |
-(IBAction) switchViews:(id)sender; |
2685 | 25 |
@end |