project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h
changeset 6263 ec41637ceb64
parent 6261 7050772ae46a
child 6265 a6944f94c19f
--- 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 <Foundation/Foundation.h>
-#import "EngineProtocolNetwork.h"
 
-@class OverlayViewController;
 
-@interface GameInterfaceBridge : NSObject <EngineProtocolDelegate> {
-    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