cocoaTouch/MainMenuViewController.h
changeset 2685 0ba746be5d59
child 2687 28b8330b8af1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/MainMenuViewController.h	Fri Jan 08 01:12:51 2010 +0000
@@ -0,0 +1,25 @@
+//
+//  MainMenuViewController.h
+//  hwengine
+//
+//  Created by Vittorio on 08/01/10.
+//  Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+
+@interface MainMenuViewController : UIViewController {
+	UIButton *passandplayButton;
+	UIButton *netplayButton;
+	UIButton *storeButton;
+	UILabel *versionLabel;
+}
+
+@property (nonatomic, retain) IBOutlet UIButton *passandplayButton;
+@property (nonatomic, retain) IBOutlet UIButton *netplayButton;
+@property (nonatomic, retain) IBOutlet UIButton *storeButton;
+@property (nonatomic, retain) IBOutlet UILabel *versionLabel;
+
+-(IBAction) startPlaying;
+@end