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

//
//  SingleTeamViewController.h
//  HedgewarsMobile
//
//  Created by Vittorio on 02/04/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>

@class HogHatViewController;
@interface SingleTeamViewController : UITableViewController {
    NSArray *hogsList;
    NSArray *hatList;
    NSArray *secondaryItems;
    
    NSString *teamName;
    
    HogHatViewController *hogChildController;
}

@property (nonatomic,retain) NSArray *hogsList;
@property (nonatomic,retain) NSArray *hatList;
@property (nonatomic,retain) NSArray *secondaryItems;
@property (nonatomic,retain) NSString *teamName;
@end