istereo

view src/istereoAppDelegate.h @ 31:3d933b796ad2

added datafie pull
author John Tsiombikas <nuclear@mutantstargoat.com>
date Thu, 08 Sep 2011 15:06:40 +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