cocoaTouch/GameConfigViewController.h
author koda
Sun, 18 Apr 2010 23:19:15 +0000
changeset 3356 3ae3fccb439e
child 3361 cfc6cd502f85
permissions -rw-r--r--
add missing controller stubs initial work for the game configuration in the ifrontend stuff for working with official apple certificates use lazy loading whenever possible
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3356
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     1
//
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     2
//  GameConfigViewController.h
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     3
//  HedgewarsMobile
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     4
//
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     5
//  Created by Vittorio on 18/04/10.
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     7
//
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     8
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    10
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    11
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    12
@interface GameConfigViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    13
    UITableView *availableTeamsTableView;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    14
    UIButton *backButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    15
    UIButton *mapButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    16
    UIButton *randomButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    17
    UIButton *weaponsButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    18
    UIButton *schemesButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    19
    UIButton *startButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    20
}
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    21
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    22
@property (nonatomic,retain) IBOutlet UITableView *availableTeamsTableView;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    23
@property (nonatomic,retain) IBOutlet UIButton *backButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    24
@property (nonatomic,retain) IBOutlet UIButton *weaponsButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    25
@property (nonatomic,retain) IBOutlet UIButton *schemesButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    26
@property (nonatomic,retain) IBOutlet UIButton *mapButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    27
@property (nonatomic,retain) IBOutlet UIButton *randomButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    28
@property (nonatomic,retain) IBOutlet UIButton *startButton;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    29
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    30
-(IBAction) buttonPressed:(id) sender;
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    31
3ae3fccb439e add missing controller stubs
koda
parents:
diff changeset
    32
@end