mirror of
https://github.com/blanking003/cx-cocos.git
synced 2025-02-05 17:51:24 +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;
|
||
|
}
|