diff -r a187c280dd3d -r f72cac290325 project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h --- a/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h Mon Apr 09 03:25:17 2012 +0200 +++ b/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h Mon Apr 09 04:43:30 2012 +0200 @@ -18,19 +18,18 @@ #import +#import "EngineProtocolNetwork.h" -@class EngineProtocolNetwork; - -@interface GameInterfaceBridge : NSObject { +@interface GameInterfaceBridge : NSObject { UIView *blackView; NSString *savePath; - EngineProtocolNetwork *proto; + NSInteger port; } @property (nonatomic,retain) UIView *blackView; @property (nonatomic,retain) NSString *savePath; -@property (nonatomic,retain) EngineProtocolNetwork *proto; +@property (assign) NSInteger port; +(void) startLocalGame:(NSDictionary *)withOptions; +(void) startSaveGame:(NSString *)atPath;