equal
deleted
inserted
replaced
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 |
|