cocoaTouch/MainMenuViewController.h
changeset 2685 0ba746be5d59
child 2687 28b8330b8af1
equal deleted inserted replaced
2684:04c086d8d9d4 2685:0ba746be5d59
       
     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;
       
    25 @end