project_files/HedgewarsMobile/Classes/TeamConfigViewController.h
branchhedgeroid
changeset 6224 42b256eca362
parent 6115 485cfecadc9a
child 6700 e04da46ee43c
--- a/project_files/HedgewarsMobile/Classes/TeamConfigViewController.h	Fri Oct 28 17:41:39 2011 +0200
+++ b/project_files/HedgewarsMobile/Classes/TeamConfigViewController.h	Fri Oct 28 18:26:17 2011 +0200
@@ -22,17 +22,23 @@
 #import <UIKit/UIKit.h>
 #import "HoldTableViewCell.h"
 
-@interface TeamConfigViewController : UITableViewController <HoldTableViewCellDelegate> {
+
+@interface TeamConfigViewController : UIViewController <UITableViewDelegate,UITableViewDataSource,HoldTableViewCellDelegate> {
+    UITableView *tableView;
+
     NSInteger selectedTeamsCount;
     NSInteger allTeamsCount;
 
     NSMutableArray *listOfSelectedTeams;
-    NSMutableArray *listOfTeams;
+    NSMutableArray *listOfAllTeams;
     NSArray *cachedContentsOfDir;
 }
 
-@property (nonatomic, retain) NSMutableArray *listOfTeams;
-@property (nonatomic, retain) NSMutableArray *listOfSelectedTeams;
-@property (nonatomic, retain) NSArray *cachedContentsOfDir;
+@property (nonatomic,retain) UITableView *tableView;
+@property (nonatomic,assign) NSInteger selectedTeamsCount;
+@property (nonatomic,assign) NSInteger allTeamsCount;
+@property (nonatomic,retain) NSMutableArray *listOfAllTeams;
+@property (nonatomic,retain) NSMutableArray *listOfSelectedTeams;
+@property (nonatomic,retain) NSArray *cachedContentsOfDir;
 
 @end