project_files/HedgewarsMobile/Classes/SingleTeamViewController.h
author nemo
Thu, 02 Sep 2010 19:22:37 -0400
changeset 3819 ba2926231115
parent 3816 7b74aa003f52
child 3829 81db3c85784b
permissions -rw-r--r--
Disable sine gun in all weapon sets, slap a beta on the name and incomplete in description. This is to reassure sheepluva who fears his WIP making it prominently into a release.

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

#import <UIKit/UIKit.h>
#import "EditableCellView.h"

@class HogHatViewController;
@class GravesViewController;
@class VoicesViewController;
@class FortsViewController;
@class FlagsViewController;
@class LevelViewController;

@interface SingleTeamViewController : UITableViewController <EditableCellViewDelegate> {
    NSMutableDictionary *teamDictionary;

    NSString *teamName;
    UIImage *normalHogSprite;

    NSArray *secondaryItems;
    NSArray *moreSecondaryItems;
    BOOL isWriteNeeded;

    HogHatViewController *hogHatViewController;
    GravesViewController *gravesViewController;
    VoicesViewController *voicesViewController;
    FortsViewController *fortsViewController;
    FlagsViewController *flagsViewController;
    LevelViewController *levelViewController;
}

@property (nonatomic,retain) NSMutableDictionary *teamDictionary;
@property (nonatomic,retain) NSString *teamName;
@property (nonatomic,retain) UIImage *normalHogSprite;
@property (nonatomic,retain) NSArray *secondaryItems;
@property (nonatomic,retain) NSArray *moreSecondaryItems;

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

@end