equal
deleted
inserted
replaced
21 |
21 |
22 #import <Foundation/Foundation.h> |
22 #import <Foundation/Foundation.h> |
23 |
23 |
24 |
24 |
25 @interface GameInterfaceBridge : NSObject { |
25 @interface GameInterfaceBridge : NSObject { |
|
26 NSInteger ipcPort; |
|
27 UIView *blackView; |
|
28 } |
26 |
29 |
27 } |
30 @property (assign) NSInteger ipcPort; |
|
31 @property (nonatomic,retain) UIView *blackView; |
28 |
32 |
29 +(void) startLocalGame:(NSDictionary *)withOptions; |
33 +(void) startLocalGame:(NSDictionary *)withOptions; |
30 +(void) startSaveGame:(NSString *)atPath; |
34 +(void) startSaveGame:(NSString *)atPath; |
31 +(void) startMissionGame:(NSString *)withScript; |
35 +(void) startMissionGame:(NSString *)withScript; |
32 |
36 |