author | koda |
Sun, 25 Apr 2010 02:30:42 +0000 | |
changeset 3365 | 37ac593e9027 |
parent 3364 | e5403e2bf02c |
child 3374 | 0d522416d97f |
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; |
3356 | 13 |
|
14 |
@interface GameConfigViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> { |
|
15 |
UITableView *availableTeamsTableView; |
|
16 |
UIButton *mapButton; |
|
17 |
UIButton *randomButton; |
|
18 |
UIButton *weaponsButton; |
|
19 |
UIButton *schemesButton; |
|
3361 | 20 |
UIBarButtonItem *startButton; |
21 |
||
22 |
UIViewController *activeController; |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3364
diff
changeset
|
23 |
MapConfigViewController *mapConfigViewController; |
3361 | 24 |
TeamConfigViewController *teamConfigViewController; |
3356 | 25 |
} |
26 |
||
27 |
@property (nonatomic,retain) IBOutlet UITableView *availableTeamsTableView; |
|
28 |
@property (nonatomic,retain) IBOutlet UIButton *weaponsButton; |
|
29 |
@property (nonatomic,retain) IBOutlet UIButton *schemesButton; |
|
30 |
@property (nonatomic,retain) IBOutlet UIButton *mapButton; |
|
31 |
@property (nonatomic,retain) IBOutlet UIButton *randomButton; |
|
3361 | 32 |
@property (nonatomic,retain) IBOutlet UIBarButtonItem *startButton; |
3356 | 33 |
|
34 |
-(IBAction) buttonPressed:(id) sender; |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3364
diff
changeset
|
35 |
-(IBAction) segmentPressed:(id) sender; |
3364 | 36 |
-(void) startGame; |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3364
diff
changeset
|
37 |
|
3356 | 38 |
@end |