istereo2
diff src/ios/main.m @ 0:7841e9365065
new istereo done right
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 16 Sep 2015 07:10:02 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/ios/main.m Wed Sep 16 07:10:02 2015 +0300 1.3 @@ -0,0 +1,9 @@ 1.4 +#import <UIKit/UIKit.h> 1.5 +#import "app_delegate.h" 1.6 + 1.7 +int main(int argc, char **argv) 1.8 +{ 1.9 + @autoreleasepool { 1.10 + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 1.11 + } 1.12 +}