Files
wagic/JGE/src/iOS/wagicAppDelegate.h
T
techdragon.nguyen@gmail.com f8f5c24304 reverted accidental change to modrules.xml
added missing appdelegate chagnes for previous changes.(iOS only)
removed system copy of bundled Res folder with app deployment (iOS only)
2011-12-11 10:04:55 +00:00

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