mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
13 lines
268 B
Mathematica
13 lines
268 B
Mathematica
|
#import <AppKit/AppKit.h>
|
||
|
#import "Controller.h"
|
||
|
|
||
|
#define APP_NAME @"GNUstep"
|
||
|
|
||
|
int main(int argc, const char *argv[], const char *env[])
|
||
|
{
|
||
|
[NSApplication sharedApplication];
|
||
|
[NSApp setDelegate: [[Controller alloc] init]];
|
||
|
|
||
|
return NSApplicationMain (argc, argv);
|
||
|
}
|