equal
deleted
inserted
replaced
24 |
24 |
25 @class OverlayViewController; |
25 @class OverlayViewController; |
26 |
26 |
27 @interface GameInterfaceBridge : NSObject <EngineProtocolDelegate> { |
27 @interface GameInterfaceBridge : NSObject <EngineProtocolDelegate> { |
28 UIViewController *parentController; |
28 UIViewController *parentController; |
29 OverlayViewController *overlayController; |
|
30 |
29 |
31 NSString *savePath; |
30 NSString *savePath; |
32 EngineProtocolNetwork *engineProtocol; |
31 EngineProtocolNetwork *engineProtocol; |
33 |
32 |
34 NSInteger ipcPort; // Port on which engine will listen |
33 NSInteger ipcPort; // Port on which engine will listen |
35 } |
34 } |
36 |
35 |
37 @property (assign) UIViewController *parentController; |
36 @property (assign) UIViewController *parentController; |
38 @property (nonatomic,retain) NSString *savePath; |
37 @property (nonatomic,retain) NSString *savePath; |
39 |
38 |
40 @property (nonatomic,retain) OverlayViewController *overlayController; |
|
41 @property (nonatomic,retain) EngineProtocolNetwork *engineProtocol; |
39 @property (nonatomic,retain) EngineProtocolNetwork *engineProtocol; |
42 |
40 |
43 @property (assign) NSInteger ipcPort; |
41 @property (assign) NSInteger ipcPort; |
44 |
42 |
45 |
43 |