3547
|
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
|