summaryrefslogtreecommitdiff
path: root/platform/iphone/app_delegate.h
diff options
context:
space:
mode:
authorAnton Yabchinskiy <arn@bestmx.ru>2014-12-03 14:49:56 +0300
committerAnton Yabchinskiy <arn@devline.ru>2014-12-04 16:32:43 +0300
commit99676d7e742ebb31b920eb37d7a955b235be35ed (patch)
treee4474598eb2b6b771a25897e0b3170059ad0ed7c /platform/iphone/app_delegate.h
parentfff056bdc5b030e39ecfa619c8f58b20305ebeae (diff)
parent8ad12525a90d90d77dc08b3d6decae33be5675c4 (diff)
Merge branch 'master' of https://github.com/okamstudio/godot
Diffstat (limited to 'platform/iphone/app_delegate.h')
-rw-r--r--platform/iphone/app_delegate.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/iphone/app_delegate.h b/platform/iphone/app_delegate.h
index db641b1f78..9437e04738 100644
--- a/platform/iphone/app_delegate.h
+++ b/platform/iphone/app_delegate.h
@@ -31,12 +31,14 @@
#import "view_controller.h"
@interface AppDelegate : NSObject <UIApplicationDelegate, UIAccelerometerDelegate, GLViewDelegate> {
- UIWindow *window;
+ //@property (strong, nonatomic) UIWindow *window;
ViewController* view_controller;
UIAccelerationValue accel[3];
UIAccelerationValue last_accel[3];
};
+@property (strong, nonatomic) UIWindow *window;
+
+ (ViewController*)getViewController;
@end