diff -r f860f27028cc -r 03df0573a9fd cocoaTouch/MainMenuViewController.h --- a/cocoaTouch/MainMenuViewController.h Mon Feb 01 22:01:35 2010 +0000 +++ b/cocoaTouch/MainMenuViewController.h Wed Feb 03 03:01:44 2010 +0000 @@ -7,20 +7,17 @@ // #import - +#import "SettingsViewController.h" @interface MainMenuViewController : UIViewController { - UIButton *passandplayButton; - UIButton *netplayButton; - UIButton *storeButton; UILabel *versionLabel; + SettingsViewController *settingsViewController; } -@property (nonatomic, retain) IBOutlet UIButton *passandplayButton; -@property (nonatomic, retain) IBOutlet UIButton *netplayButton; -@property (nonatomic, retain) IBOutlet UIButton *storeButton; @property (nonatomic, retain) IBOutlet UILabel *versionLabel; +@property (nonatomic, retain) SettingsViewController *settingsViewController; -(IBAction) startPlaying; -(IBAction) notYetImplemented; +-(IBAction) switchViews:(id)sender; @end