project_files/HedgewarsMobile/Classes/GameConfigViewController.h
changeset 3546 ccf4854df294
parent 3523 6592fbb969da
child 3547 02875b1145b7
equal deleted inserted replaced
3545:b07ee704f35d 3546:ccf4854df294
     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 @class TeamConfigViewController;
       
    12 @class MapConfigViewController;
       
    13 @class SchemeWeaponConfigViewController;
       
    14 
       
    15 @interface GameConfigViewController : UIViewController {    
       
    16     UIViewController *activeController;
       
    17     MapConfigViewController *mapConfigViewController;
       
    18     TeamConfigViewController *teamConfigViewController;
       
    19     SchemeWeaponConfigViewController *schemeWeaponConfigViewController;
       
    20 }
       
    21 
       
    22 -(IBAction) buttonPressed:(id) sender;
       
    23 -(IBAction) segmentPressed:(id) sender;
       
    24 -(void) startGame:(UIButton *)button;
       
    25 
       
    26 @end