diff -r 32a032f1b178 -r ec41637ceb64 project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h --- a/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h Wed Nov 02 17:42:52 2011 +0100 +++ b/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h Wed Nov 02 19:07:37 2011 +0100 @@ -20,20 +20,12 @@ #import -#import "EngineProtocolNetwork.h" -@class OverlayViewController; -@interface GameInterfaceBridge : NSObject { - NSString *savePath; - EngineProtocolNetwork *engineProtocol; - +@interface GameInterfaceBridge : NSObject { NSInteger ipcPort; // Port on which engine will listen } -@property (nonatomic,retain) NSString *savePath; -@property (nonatomic,retain) EngineProtocolNetwork *engineProtocol; - @property (assign) NSInteger ipcPort; @@ -42,6 +34,4 @@ -(void) startSaveGame:(NSString *)atPath; -(void) startMissionGame:(NSString *)withScript; --(void) gameHasEndedWithStats:(NSArray *)stats; - @end