project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h
changeset 6261 7050772ae46a
parent 6259 02765411a912
child 6263 ec41637ceb64
--- a/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h	Wed Nov 02 09:48:29 2011 +0100
+++ b/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h	Wed Nov 02 16:31:16 2011 +0100
@@ -25,17 +25,13 @@
 @class OverlayViewController;
 
 @interface GameInterfaceBridge : NSObject <EngineProtocolDelegate> {
-    UIViewController *parentController;
-
     NSString *savePath;
     EngineProtocolNetwork *engineProtocol;
 
     NSInteger ipcPort;  // Port on which engine will listen
 }
 
-@property (assign) UIViewController *parentController;
 @property (nonatomic,retain) NSString *savePath;
-
 @property (nonatomic,retain) EngineProtocolNetwork *engineProtocol;
 
 @property (assign) NSInteger ipcPort;
@@ -46,8 +42,6 @@
 -(void) startSaveGame:(NSString *)atPath;
 -(void) startMissionGame:(NSString *)withScript;
 
--(void) prepareEngineLaunch;
--(void) engineLaunch;
 -(void) gameHasEndedWithStats:(NSArray *)stats;
 
 @end