engine/Templates/SalmonUniversalTemplate/iOS/ViewController.mm

20 lines
302 B
Plaintext
Raw Permalink Normal View History

2013-02-06 20:39:58 +00:00
#import "ViewController.h"
#import "ios_api.h"
@implementation ViewController
- (void) appInitCaller
{
CustomAppInit();
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
@end