istereo

diff src/istereoAppDelegate.h @ 0:1bb950d0976b

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 06 Sep 2011 08:07:14 +0300
parents
children ff055bff6a15
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/istereoAppDelegate.h	Tue Sep 06 08:07:14 2011 +0300
     1.3 @@ -0,0 +1,22 @@
     1.4 +//
     1.5 +//  istereoAppDelegate.h
     1.6 +//  istereo
     1.7 +//
     1.8 +//  Created by nuclear on 9/6/11.
     1.9 +//  Copyright __MyCompanyName__ 2011. All rights reserved.
    1.10 +//
    1.11 +
    1.12 +#import <UIKit/UIKit.h>
    1.13 +
    1.14 +@class EAGLView;
    1.15 +
    1.16 +@interface istereoAppDelegate : NSObject <UIApplicationDelegate> {
    1.17 +    UIWindow *window;
    1.18 +    EAGLView *glView;
    1.19 +}
    1.20 +
    1.21 +@property (nonatomic, retain) IBOutlet UIWindow *window;
    1.22 +@property (nonatomic, retain) IBOutlet EAGLView *glView;
    1.23 +
    1.24 +@end
    1.25 +