cocoaTouch/GameConfigViewController.h
changeset 3356 3ae3fccb439e
child 3361 cfc6cd502f85
equal deleted inserted replaced
3355:dc9e61e67484 3356:3ae3fccb439e
       
     1 //
       
     2 //  GameConfigViewController.h
       
     3 //  HedgewarsMobile
       
     4 //
       
     5 //  Created by Vittorio on 18/04/10.
       
     6 //  Copyright 2010 __MyCompanyName__. All rights reserved.
       
     7 //
       
     8 
       
     9 #import <UIKit/UIKit.h>
       
    10 
       
    11 
       
    12 @interface GameConfigViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
       
    13     UITableView *availableTeamsTableView;
       
    14     UIButton *backButton;
       
    15     UIButton *mapButton;
       
    16     UIButton *randomButton;
       
    17     UIButton *weaponsButton;
       
    18     UIButton *schemesButton;
       
    19     UIButton *startButton;
       
    20 }
       
    21 
       
    22 @property (nonatomic,retain) IBOutlet UITableView *availableTeamsTableView;
       
    23 @property (nonatomic,retain) IBOutlet UIButton *backButton;
       
    24 @property (nonatomic,retain) IBOutlet UIButton *weaponsButton;
       
    25 @property (nonatomic,retain) IBOutlet UIButton *schemesButton;
       
    26 @property (nonatomic,retain) IBOutlet UIButton *mapButton;
       
    27 @property (nonatomic,retain) IBOutlet UIButton *randomButton;
       
    28 @property (nonatomic,retain) IBOutlet UIButton *startButton;
       
    29 
       
    30 -(IBAction) buttonPressed:(id) sender;
       
    31 
       
    32 @end