cocoaTouch/TeamSettingsViewController.h
author koda
Sat, 05 Jun 2010 14:07:58 +0000
changeset 3495 a6b4f351d400
parent 3323 091cf214bdd5
permissions -rw-r--r--
now engine can be optionally built as library, there's an example wrapper of how to use it building server is now disabled by default, saves users some headaches
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     1
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     2
//  TeamSettingsViewController.h
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     3
//  HedgewarsMobile
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     4
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     5
//  Created by Vittorio on 02/04/10.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     7
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     8
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    10
@class SingleTeamViewController;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    11
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    12
@interface TeamSettingsViewController : UITableViewController {
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3305
diff changeset
    13
    NSMutableArray *listOfTeams;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    14
    SingleTeamViewController *childController;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    15
}
3323
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3305
diff changeset
    16
091cf214bdd5 implement an add/remove team in the ifrontend
koda
parents: 3305
diff changeset
    17
@property (nonatomic, retain) NSMutableArray *listOfTeams;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    18
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    19
@end