diff -r 04c086d8d9d4 -r 0ba746be5d59 cocoaTouch/MainMenuViewController.h --- /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 + + +@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