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)
This commit is contained in:
@@ -1,16 +1,25 @@
|
||||
#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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user