mirror of
https://github.com/blanking003/cx-cocos.git
synced 2025-04-22 14:59:20 +00:00
11 lines
239 B
Mathematica
11 lines
239 B
Mathematica
|
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
||
|
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
|
||
|
[pool release];
|
||
|
return retVal;
|
||
|
}
|