project_files/HedgewarsMobile/Classes/SDL_uikitappdelegate.h
changeset 3598 a8aa06bae895
parent 3547 02875b1145b7
child 3616 85d69ddb41b6
equal deleted inserted replaced
3597:978c30ef50fc 3598:a8aa06bae895
    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;
       
    32     MainMenuViewController *mainViewController;
    30     MainMenuViewController *mainViewController;
    33     BOOL isInGame;
    31     BOOL isInGame;
    34 }
    32 }
    35 
       
    36 @property (readwrite, assign) SDL_Window *window;    
       
    37 @property (readwrite, retain) UIWindow *uiwindow;
       
    38 
    33 
    39 +(SDLUIKitDelegate *)sharedAppDelegate;
    34 +(SDLUIKitDelegate *)sharedAppDelegate;
    40 -(void) startSDLgame;
    35 -(void) startSDLgame;
    41 -(void) displayOverlayLater;
    36 -(void) displayOverlayLater;
    42 
    37