cocoaTouch/SingleTeamViewController.h
author koda
Thu, 08 Apr 2010 22:45:18 +0000
changeset 3325 652a8ebdf667
parent 3315 4e2813713358
child 3329 d8e41ee0b3ae
permissions -rw-r--r--
moved around team creation add flags support add forts support need to find another way to save on file

//
//  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