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:
techdragon.nguyen@gmail.com
2011-12-11 10:04:55 +00:00
parent e58f96afad
commit f8f5c24304
4 changed files with 142 additions and 32 deletions
+10 -1
View File
@@ -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