author | koda |
Fri, 08 Jan 2010 03:52:44 +0000 | |
changeset 2688 | 174c94b8ea72 |
parent 2687 | 28b8330b8af1 |
child 2740 | 03df0573a9fd |
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> |
|
10 |
||
11 |
||
12 |
@interface MainMenuViewController : UIViewController { |
|
13 |
UIButton *passandplayButton; |
|
14 |
UIButton *netplayButton; |
|
15 |
UIButton *storeButton; |
|
16 |
UILabel *versionLabel; |
|
17 |
} |
|
18 |
||
19 |
@property (nonatomic, retain) IBOutlet UIButton *passandplayButton; |
|
20 |
@property (nonatomic, retain) IBOutlet UIButton *netplayButton; |
|
21 |
@property (nonatomic, retain) IBOutlet UIButton *storeButton; |
|
22 |
@property (nonatomic, retain) IBOutlet UILabel *versionLabel; |
|
23 |
||
24 |
-(IBAction) startPlaying; |
|
2687
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
25 |
-(IBAction) notYetImplemented; |
2685 | 26 |
@end |