21 lines
415 B
Objective-C
21 lines
415 B
Objective-C
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@class OpenglView;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
OpenglView *glView;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
@property (nonatomic, retain) IBOutlet OpenglView *glView;
|
|
|
|
@end
|