cocoaTouch/SingleTeamViewController.h
author smxx
Sat, 10 Apr 2010 19:04:39 +0000
changeset 3331 8e05feb871c3
parent 3330 987ec27b6042
child 3332 3c90a923f156
permissions -rw-r--r--
Engine: * Moved "new crate" messages to group AmmoInfo * Show Sudden Death countdown * Fixed Sudden Death round counting (so '15 rounds' will really be 15 rounds, not 16)

//
//  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 <UITextFieldDelegate> {
    NSMutableDictionary *teamDictionary;
    
    UITextField *textFieldBeingEdited;
    NSInteger selectedHog;
    NSString *teamName;
    NSArray *hatArray;
    
    NSArray *secondaryItems;
    NSArray *secondaryControllers;
    BOOL isWriteNeeded;
    
    HogHatViewController *hogChildController;
}

@property (nonatomic,retain) NSMutableDictionary *teamDictionary;
@property (nonatomic,retain) UITextField *textFieldBeingEdited;
@property (nonatomic,retain) NSString *teamName;
@property (nonatomic,retain) NSArray *hatArray;
@property (nonatomic,retain) NSArray *secondaryItems;
@property (nonatomic,retain) NSArray *secondaryControllers;

-(void) writeFile;
-(void) setWriteNeeded;

@end