cocoaTouch/TeamSettingsViewController.h
author nemo
Fri, 16 Apr 2010 00:02:30 +0000
changeset 3343 6289df7747c0
parent 3323 091cf214bdd5
permissions -rw-r--r--
Clarify an ambiguity as to what to do here if your name is already taken.

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

#import <UIKit/UIKit.h>
@class SingleTeamViewController;

@interface TeamSettingsViewController : UITableViewController {
    NSMutableArray *listOfTeams;
    SingleTeamViewController *childController;
}

@property (nonatomic, retain) NSMutableArray *listOfTeams;

@end