ios stuff

This commit is contained in:
Vladislav Khorev 2013-02-06 20:39:20 +00:00
parent c96eab18dd
commit 0fbbb3d106
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,5 @@
#import "CustomGLKView.h"
@implementation CustomGLKView
@end

View File

@ -0,0 +1,20 @@
#import "ViewController.h"
#import "ios_api.h"
@implementation ViewController
- (void) appInitCaller
{
CustomAppInit();
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
@end