equal
deleted
inserted
replaced
25 |
25 |
26 @class MainMenuViewController; |
26 @class MainMenuViewController; |
27 @class OverlayViewController; |
27 @class OverlayViewController; |
28 |
28 |
29 @interface SDLUIKitDelegate:NSObject<UIApplicationDelegate> { |
29 @interface SDLUIKitDelegate:NSObject<UIApplicationDelegate> { |
|
30 SDL_Window *window; |
|
31 UIWindow *uiwindow; |
30 MainMenuViewController *mainViewController; |
32 MainMenuViewController *mainViewController; |
31 BOOL isInGame; |
33 BOOL isInGame; |
32 } |
34 } |
|
35 |
|
36 @property (readwrite, assign) SDL_Window *window; |
|
37 @property (readwrite, retain) UIWindow *uiwindow; |
33 |
38 |
34 +(SDLUIKitDelegate *)sharedAppDelegate; |
39 +(SDLUIKitDelegate *)sharedAppDelegate; |
35 -(void) startSDLgame; |
40 -(void) startSDLgame; |
36 -(void) displayOverlayLater; |
41 -(void) displayOverlayLater; |
37 |
42 |