project_files/HedgewarsMobile/Classes/TeamConfigViewController.h
changeset 6115 485cfecadc9a
parent 4976 088d40d8aba2
child 6700 e04da46ee43c
equal deleted inserted replaced
6114:443cce9e060f 6115:485cfecadc9a
    20 
    20 
    21 
    21 
    22 #import <UIKit/UIKit.h>
    22 #import <UIKit/UIKit.h>
    23 #import "HoldTableViewCell.h"
    23 #import "HoldTableViewCell.h"
    24 
    24 
    25 @interface TeamConfigViewController : UITableViewController <HoldTableViewCellDelegate> {
    25 
       
    26 @interface TeamConfigViewController : UIViewController <UITableViewDelegate,UITableViewDataSource,HoldTableViewCellDelegate> {
       
    27     UITableView *tableView;
       
    28 
    26     NSInteger selectedTeamsCount;
    29     NSInteger selectedTeamsCount;
    27     NSInteger allTeamsCount;
    30     NSInteger allTeamsCount;
    28 
    31 
    29     NSMutableArray *listOfSelectedTeams;
    32     NSMutableArray *listOfSelectedTeams;
    30     NSMutableArray *listOfTeams;
    33     NSMutableArray *listOfAllTeams;
    31     NSArray *cachedContentsOfDir;
    34     NSArray *cachedContentsOfDir;
    32 }
    35 }
    33 
    36 
    34 @property (nonatomic, retain) NSMutableArray *listOfTeams;
    37 @property (nonatomic,retain) UITableView *tableView;
    35 @property (nonatomic, retain) NSMutableArray *listOfSelectedTeams;
    38 @property (nonatomic,assign) NSInteger selectedTeamsCount;
    36 @property (nonatomic, retain) NSArray *cachedContentsOfDir;
    39 @property (nonatomic,assign) NSInteger allTeamsCount;
       
    40 @property (nonatomic,retain) NSMutableArray *listOfAllTeams;
       
    41 @property (nonatomic,retain) NSMutableArray *listOfSelectedTeams;
       
    42 @property (nonatomic,retain) NSArray *cachedContentsOfDir;
    37 
    43 
    38 @end
    44 @end