istereo

view src/istereoAppDelegate.h @ 16:20a9d3db38cb

forgot to actually use bind_texture
author John Tsiombikas <nuclear@mutantstargoat.com>
date Wed, 07 Sep 2011 09:19:47 +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