istereo
view src/istereoAppDelegate.h @ 21:75a63f9ab7cc
ha!
author | John Tsiombikas <nuclear@mutantstargoat.com> |
---|---|
date | Wed, 07 Sep 2011 10:49:11 +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