project_files/HedgewarsMobile/Classes/GameSetup.h
changeset 3548 4d220ee7c75f
parent 3547 02875b1145b7
child 3616 85d69ddb41b6
equal deleted inserted replaced
3547:02875b1145b7 3548:4d220ee7c75f
    11 
    11 
    12 @interface GameSetup : NSObject {
    12 @interface GameSetup : NSObject {
    13     NSDictionary *systemSettings;
    13     NSDictionary *systemSettings;
    14     NSDictionary *gameConfig;
    14     NSDictionary *gameConfig;
    15     
    15     
    16     NSInteger ipcPort;
    16     NSInteger ipcPort;  // Port on which engine will listen
    17     TCPsocket sd, csd; // Socket descriptor, Client socket descriptor
    17     TCPsocket csd;      // Client socket descriptor
    18 }
    18 }
    19 
    19 
    20 @property (nonatomic, retain) NSDictionary *systemSettings;
    20 @property (nonatomic, retain) NSDictionary *systemSettings;
    21 @property (nonatomic, retain) NSDictionary *gameConfig;
    21 @property (nonatomic, retain) NSDictionary *gameConfig;
    22 
    22