19 lines
343 B
Objective-C
19 lines
343 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <GLKit/GLKit.h>
|
|
#import <conchRuntime.h>
|
|
|
|
@interface ViewController : GLKViewController
|
|
{
|
|
@public
|
|
|
|
GLKView* m_pGLKView;
|
|
|
|
EAGLContext* m_pGLContext;
|
|
|
|
conchRuntime* m_pConchRuntime;
|
|
}
|
|
+(ViewController*)GetIOSViewController;
|
|
-(id)init;
|
|
@end
|
|
|