mirror of
https://github.com/blanking003/cx-cocos.git
synced 2025-04-23 15:29:00 +00:00
10 lines
242 B
Mathematica
10 lines
242 B
Mathematica
|
#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);
|
||
|
}
|