2022-06-29 11:49:31 +08:00

16 lines
310 B
Objective-C

//
// main.m
// HeadlessCocos
//
// Created by zhl on 2022/6/28.
//
#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;
}