cocoaTouch/SingleTeamViewController.h
author koda
Tue, 06 Apr 2010 18:14:15 +0000
changeset 3312 6d8f1c76756d
parent 3305 91074496d5c9
child 3315 4e2813713358
permissions -rw-r--r--
restore and update the old general settings show hats in the team table
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
//  SingleTeamViewController.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
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    11
@class HogHatViewController;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    12
@interface SingleTeamViewController : UITableViewController {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    13
    NSArray *hogsList;
3312
6d8f1c76756d restore and update the old general settings
koda
parents: 3305
diff changeset
    14
    NSArray *hatList;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    15
    NSArray *secondaryItems;
3312
6d8f1c76756d restore and update the old general settings
koda
parents: 3305
diff changeset
    16
    
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    17
    NSString *teamName;
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
    HogHatViewController *hogChildController;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    20
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    21
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    22
@property (nonatomic,retain) NSArray *hogsList;
3312
6d8f1c76756d restore and update the old general settings
koda
parents: 3305
diff changeset
    23
@property (nonatomic,retain) NSArray *hatList;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    24
@property (nonatomic,retain) NSArray *secondaryItems;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    25
@property (nonatomic,retain) NSString *teamName;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    26
@end