istereo

view src/istereoAppDelegate.h @ 36:834503dcb486

fixed the rotated gui problem
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 09 Sep 2011 10:25:03 +0300
parents
children ff055bff6a15
line source
1 //
2 // istereoAppDelegate.h
3 // istereo
4 //
5 // Created by nuclear on 9/6/11.
6 // Copyright __MyCompanyName__ 2011. All rights reserved.
7 //
9 #import <UIKit/UIKit.h>
11 @class EAGLView;
13 @interface istereoAppDelegate : NSObject <UIApplicationDelegate> {
14 UIWindow *window;
15 EAGLView *glView;
16 }
18 @property (nonatomic, retain) IBOutlet UIWindow *window;
19 @property (nonatomic, retain) IBOutlet EAGLView *glView;
21 @end