16 lines
310 B
Objective-C
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;
|
|
}
|