diff -r 6b2d19ed521a -r 6dfad55fd71c project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h --- a/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h Mon Oct 31 01:44:32 2011 +0100 +++ b/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h Mon Oct 31 03:08:16 2011 +0100 @@ -22,9 +22,6 @@ #import #import "EngineProtocolNetwork.h" -typedef enum {gtNone, gtLocal, gtSave, gtMission, gtNet} TGameType; -typedef enum {gsNone, gsInGame, gsEnded, gsInterrupted} TGameStatus; - @class OverlayViewController; @interface GameInterfaceBridge : NSObject { @@ -35,7 +32,6 @@ EngineProtocolNetwork *engineProtocol; NSInteger ipcPort; // Port on which engine will listen - TGameType gameType; } @property (assign) UIViewController *parentController; @@ -45,7 +41,6 @@ @property (nonatomic,retain) EngineProtocolNetwork *engineProtocol; @property (assign) NSInteger ipcPort; -@property (assign) TGameType gameType; -(id) initWithController:(id) viewController;