cocoaTouch/SDLOverrides/SDL_uikitappdelegate.h
changeset 3361 cfc6cd502f85
parent 3335 2520ee7a5484
child 3374 0d522416d97f
equal deleted inserted replaced
3360:717b4e46e855 3361:cfc6cd502f85
    27 @class OverlayViewController;
    27 @class OverlayViewController;
    28 
    28 
    29 @interface SDLUIKitDelegate:NSObject <UIApplicationDelegate> {
    29 @interface SDLUIKitDelegate:NSObject <UIApplicationDelegate> {
    30 	SDL_Window *window;
    30 	SDL_Window *window;
    31 	UIWindow *uiwindow;
    31 	UIWindow *uiwindow;
       
    32 
    32 	MainMenuViewController *viewController;
    33 	MainMenuViewController *viewController;
    33     BOOL isInGame;
    34     BOOL isInGame;
    34 }
    35 }
    35 
    36 
    36 @property (readwrite, assign) SDL_Window *window;
    37 @property (readwrite, assign) SDL_Window *window;
    37 @property (readwrite, retain) UIWindow *uiwindow;
    38 @property (readwrite, retain) UIWindow *uiwindow;
    38 @property (nonatomic, retain) MainMenuViewController *viewController;
       
    39 
    39 
    40 +(SDLUIKitDelegate *)sharedAppDelegate;
    40 +(SDLUIKitDelegate *)sharedAppDelegate;
    41 -(void) startSDLgame;
    41 -(void) startSDLgame;
    42 
    42 
    43 @end
    43 @end