cocoaTouch/SingleTeamViewController.h
author smxx
Sun, 11 Apr 2010 09:53:28 +0000
changeset 3336 d7c1ffed1e15
parent 3332 3c90a923f156
child 3340 96dd168b080b
permissions -rw-r--r--
Engine: * Avoid hedgehog specific actions (attack, jump, etc.) to be triggered while the game is paused

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