cocoaTouch/SingleTeamViewController.h
author palewolf
Fri, 09 Apr 2010 00:01:53 +0000
changeset 3326 7f57fc2bf630
parent 3325 652a8ebdf667
child 3329 d8e41ee0b3ae
permissions -rw-r--r--
Fix splashes for older graphics cards

//
//  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 {
    NSMutableDictionary *teamDictionary;
    NSArray *hatArray;
    
    NSArray *secondaryItems;
    NSArray *secondaryControllers;
    BOOL isWriteNeeded;
    
    HogHatViewController *hogChildController;
}

@property (nonatomic,retain) NSMutableDictionary *teamDictionary;
@property (nonatomic,retain) NSArray *hatArray;
@property (nonatomic,retain) NSArray *secondaryItems;
@property (nonatomic,retain) NSArray *secondaryControllers;
@end