diff -r c8c6ac44f51b -r 1dbf4f8eaac0 cocoaTouch/GameSetup.h --- a/cocoaTouch/GameSetup.h Tue Mar 30 00:02:40 2010 +0000 +++ b/cocoaTouch/GameSetup.h Tue Mar 30 00:03:58 2010 +0000 @@ -11,16 +11,19 @@ @interface GameSetup : NSObject { NSDictionary *systemSettings; - + NSArray *teams; + NSInteger ipcPort; TCPsocket sd, csd; // Socket descriptor, Client socket descriptor } @property (nonatomic, retain) NSDictionary *systemSettings; +@property (nonatomic, retain) NSArray *teams; -(void) engineProtocol; -(void) startThread: (NSString *)selector; -(int) sendToEngine: (NSString *)string; +-(void) sendTeamData:(NSDictionary *)teamData; -(const char **)getSettings; @end