istereo

view src/istereoAppDelegate.h @ 11:698cbf1a1b97

foo
author John Tsiombikas <nuclear@mutantstargoat.com>
date Wed, 07 Sep 2011 08:25:56 +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