mirror of
https://github.com/blanking003/cx-cocos.git
synced 2025-01-28 05:41:27 +00:00
11 lines
239 B
Objective-C
11 lines
239 B
Objective-C
|
|
|
|
#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;
|
|
}
|