diff -r 2448f5390bd5 -r d8f62c805619 project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h --- a/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h Sun Nov 13 12:11:44 2011 -0500 +++ b/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.h Sun Nov 13 18:23:05 2011 +0100 @@ -21,15 +21,22 @@ #import +@class EngineProtocolNetwork; @interface GameInterfaceBridge : NSObject { UIView *blackView; + NSString *savePath; + EngineProtocolNetwork *proto; } @property (nonatomic,retain) UIView *blackView; +@property (nonatomic,retain) NSString *savePath; +@property (nonatomic,retain) EngineProtocolNetwork *proto; +(void) startLocalGame:(NSDictionary *)withOptions; +(void) startSaveGame:(NSString *)atPath; +(void) startMissionGame:(NSString *)withScript; ++(void) registerCallingController:(UIViewController *)controller; + @end