cocoaTouch/GameConfigViewController.h
changeset 3516 a8c673657b79
parent 3510 23145a950eae
parent 3515 3e8635f43972
child 3529 0e968ba12a84
equal deleted inserted replaced
3510:23145a950eae 3516:a8c673657b79
     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 
       
    14 @interface GameConfigViewController : UIViewController {    
       
    15     UIViewController *activeController;
       
    16     MapConfigViewController *mapConfigViewController;
       
    17     TeamConfigViewController *teamConfigViewController;
       
    18 }
       
    19 
       
    20 
       
    21 -(IBAction) buttonPressed:(id) sender;
       
    22 -(IBAction) segmentPressed:(id) sender;
       
    23 -(void) startGame;
       
    24 
       
    25 @end