This commit is contained in:
blank
2021-06-07 15:13:32 +08:00
parent 74d5947e9d
commit 346fc42e67
500 changed files with 77303 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
#import <Cocoa/Cocoa.h>
#import "AppController.h"
int main(int argc, const char * argv[])
{
id delegate = [[AppController alloc] init];
NSApplication.sharedApplication.delegate = delegate;
return NSApplicationMain(argc, argv);
}