cocoaTouch/iPad/SingleTeamViewController.h
author smxx
Sun, 04 Apr 2010 16:38:00 +0000
changeset 3304 8690a3aa93b5
parent 3270 9bd8fb1707b9
permissions -rw-r--r--
Engine: * Show active rules/modes while the game is syncing, paused or while the quit confirmation is shown

//
//  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 {
    NSArray *hogsList;
    NSArray *secondaryItems;
    NSString *teamName;
    
    HogHatViewController *hogChildController;
}

@property (nonatomic,retain) NSArray *hogsList;
@property (nonatomic,retain) NSArray *secondaryItems;
@property (nonatomic,retain) NSString *teamName;
@end