f8f5c24304
added missing appdelegate chagnes for previous changes.(iOS only) removed system copy of bundled Res folder with app deployment (iOS only)
26 lines
889 B
Objective-C
Executable File
26 lines
889 B
Objective-C
Executable File
#import <UIKit/UIKit.h>
|
|
#import "Reachability.h"
|
|
#import "WagicDownloadProgressViewController.h"
|
|
@class EAGLViewController;
|
|
|
|
@interface wagicAppDelegate : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
EAGLViewController *glViewController;
|
|
//Reachability variables
|
|
Reachability* hostReach;
|
|
Reachability* internetReach;
|
|
Reachability* wifiReach;
|
|
|
|
}
|
|
- (void) rotateBackgroundImage:(UIInterfaceOrientation)fromInterfaceOrientation toInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation;
|
|
|
|
- (void) handleWEngineCommand:(NSString *) command;
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
@property (nonatomic, retain) EAGLViewController *glViewController;
|
|
@property (nonatomic, retain) WagicDownloadProgressViewController *wagicDownloadController;
|
|
@property (nonatomic, retain) Reachability *hostReach, *internetReach, *wifiReach;
|
|
|
|
@end
|
|
|