cocoaTouch/SingleTeamViewController.h
author sheepluva
Tue, 06 Apr 2010 09:58:43 +0000
changeset 3309 a68632232d1a
parent 3305 91074496d5c9
child 3312 6d8f1c76756d
permissions -rw-r--r--
* add fixed grave Simple.png, by "anon__" * ran 'find . | grep -i '\.png$' | xargs -d "\n" optipng -o7 -np -nc -nb -fix' on trunk, only took 2h 45m 8-)

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