author | koda |
Mon, 02 Aug 2010 00:55:24 +0200 | |
changeset 3703 | 12d17c6e8855 |
parent 3547 | 02875b1145b7 |
child 3705 | e1959819a542 |
permissions | -rw-r--r-- |
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 |
||
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3547
diff
changeset
|
15 |
@interface GameConfigViewController : UIViewController { |
3547 | 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 |