project_files/HedgewarsMobile/Classes/SDL_uikitappdelegate.h
changeset 3922 44804043b691
parent 3910 dd47efbdec46
child 3935 5ca27a0e9a63
--- a/project_files/HedgewarsMobile/Classes/SDL_uikitappdelegate.h	Fri Oct 01 13:56:11 2010 -0400
+++ b/project_files/HedgewarsMobile/Classes/SDL_uikitappdelegate.h	Sat Oct 02 04:23:32 2010 +0200
@@ -21,17 +21,19 @@
 */
 
 #import <UIKit/UIKit.h>
-#import "SDL_uikitopenglview.h"
 
 @class MainMenuViewController;
-@class OverlayViewController;
 
 @interface SDLUIKitDelegate:NSObject<UIApplicationDelegate> {
     MainMenuViewController *mainViewController;
+    UIWindow *uiwindow;
+    UIWindow *secondWindow;
     BOOL isInGame;
 }
 
 @property (nonatomic,retain) MainMenuViewController *mainViewController;
+@property (nonatomic,retain) UIWindow *uiwindow;
+@property (nonatomic,retain) UIWindow *secondWindow;
 
 +(SDLUIKitDelegate *)sharedAppDelegate;
 -(void) startSDLgame:(NSDictionary *)gameDictionary;