summaryrefslogtreecommitdiff
path: root/src/video/uikit/SDL_uikitappdelegate.h
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2010-01-21 06:21:52 +0000
committerSam Lantinga <slouken@libsdl.org>2010-01-21 06:21:52 +0000
commitab429d0a4deb8484848c4b3863644f6dbf5fcbe9 (patch)
treeb9c8869edeedb417bfb247f1e3c838a905a36c5f /src/video/uikit/SDL_uikitappdelegate.h
parente0f0f526fe0a43037e37592547ab9a7a54680dd0 (diff)
downloadsdl-ab429d0a4deb8484848c4b3863644f6dbf5fcbe9.tar.gz
Switched from SDL_WindowID and SDL_TextureID to SDL_Window* and SDL_Texture* for code simplicity and improved performance.
Diffstat (limited to 'src/video/uikit/SDL_uikitappdelegate.h')
-rw-r--r--src/video/uikit/SDL_uikitappdelegate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video/uikit/SDL_uikitappdelegate.h b/src/video/uikit/SDL_uikitappdelegate.h
index 704b7f81f..fe65c5a39 100644
--- a/src/video/uikit/SDL_uikitappdelegate.h
+++ b/src/video/uikit/SDL_uikitappdelegate.h
@@ -25,12 +25,12 @@
/* *INDENT-OFF* */
@interface SDLUIKitDelegate:NSObject<UIApplicationDelegate> {
- UIWindow *window;
- SDL_WindowID windowID;
+ SDL_Window *window;
+ UIWindow *uiwindow;
}
-@property (readwrite, retain) UIWindow *window;
-@property (readwrite, assign) SDL_WindowID windowID;
+@property (readwrite, assign) SDL_Window *window;
+@property (readwrite, retain) UIWindow *uiwindow;
+(SDLUIKitDelegate *)sharedAppDelegate;