--- a/cocoaTouch/SDLOverrides/SDL_uikitappdelegate.h Sat Jan 23 13:15:27 2010 +0000
+++ b/cocoaTouch/SDLOverrides/SDL_uikitappdelegate.h Sat Jan 23 21:57:24 2010 +0000
@@ -23,20 +23,16 @@
#import <UIKit/UIKit.h>
#import "SDL_video.h"
-@class GameSetup;
-
@interface SDLUIKitDelegate:NSObject<UIApplicationDelegate> {
UIWindow *window;
SDL_WindowID windowID;
UITabBarController *controller;
- GameSetup *setup;
}
// the outlets are set in MainWindow.xib
@property (readwrite, retain) IBOutlet UIWindow *window;
@property (readwrite, assign) SDL_WindowID windowID;
@property (nonatomic, retain) IBOutlet UITabBarController *controller;
-@property (nonatomic, retain) GameSetup *setup;
+(SDLUIKitDelegate *)sharedAppDelegate;
-(NSString *)dataFilePath:(NSString *)fileName;