vrshoot

annotate src/ios/app_delegate.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
rev   line source
nuclear@0 1 #import <UIKit/UIKit.h>
nuclear@0 2
nuclear@0 3 @class GLView;
nuclear@0 4
nuclear@0 5 @interface AppDelegate : NSObject <UIApplicationDelegate> {
nuclear@0 6 UIWindow *window;
nuclear@0 7 GLView *glview;
nuclear@0 8 }
nuclear@0 9
nuclear@0 10 @end