--- a/project_files/HedgewarsMobile/Classes/TeamConfigViewController.h Sun Oct 09 20:03:04 2011 -0400
+++ b/project_files/HedgewarsMobile/Classes/TeamConfigViewController.h Mon Oct 10 02:50:01 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