cocoaTouch/SingleTeamViewController.h
author sheepluva
Tue, 06 Apr 2010 14:32:26 +0000
changeset 3311 18436bb84bfe
parent 3305 91074496d5c9
child 3312 6d8f1c76756d
permissions -rw-r--r--
fixed size of yinyang flag, thanks to inu for the heads up

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