diff --git a/ios/doublehitballs/CustomGLKView.mm b/ios/doublehitballs/CustomGLKView.mm new file mode 100644 index 0000000..5b9214c --- /dev/null +++ b/ios/doublehitballs/CustomGLKView.mm @@ -0,0 +1,5 @@ +#import "CustomGLKView.h" + +@implementation CustomGLKView + +@end \ No newline at end of file diff --git a/ios/doublehitballs/ViewController.mm b/ios/doublehitballs/ViewController.mm new file mode 100644 index 0000000..c2b6f76 --- /dev/null +++ b/ios/doublehitballs/ViewController.mm @@ -0,0 +1,20 @@ +#import "ViewController.h" +#import "ios_api.h" + + +@implementation ViewController + + +- (void) appInitCaller +{ + CustomAppInit(); +} + +- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation +{ + return UIInterfaceOrientationIsLandscape(interfaceOrientation); +} + + + +@end \ No newline at end of file