author | koda |
Sun, 20 Jun 2010 18:35:59 +0200 | |
changeset 3523 | 6592fbb969da |
parent 3514 | 59dbd31e9953 |
child 3546 | ccf4854df294 |
permissions | -rw-r--r-- |
3356 | 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 |
||
3361 | 11 |
@class TeamConfigViewController; |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3364
diff
changeset
|
12 |
@class MapConfigViewController; |
3513
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3374
diff
changeset
|
13 |
@class SchemeWeaponConfigViewController; |
3356 | 14 |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
15 |
@interface GameConfigViewController : UIViewController { |
3361 | 16 |
UIViewController *activeController; |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3364
diff
changeset
|
17 |
MapConfigViewController *mapConfigViewController; |
3361 | 18 |
TeamConfigViewController *teamConfigViewController; |
3513
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3374
diff
changeset
|
19 |
SchemeWeaponConfigViewController *schemeWeaponConfigViewController; |
3356 | 20 |
} |
21 |
||
22 |
-(IBAction) buttonPressed:(id) sender; |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3364
diff
changeset
|
23 |
-(IBAction) segmentPressed:(id) sender; |
3523 | 24 |
-(void) startGame:(UIButton *)button; |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3364
diff
changeset
|
25 |
|
3356 | 26 |
@end |