mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
5ff1de398e
treat Forge like an entirely new program, and not as a port. I'll still be using many of the ideas from QuakeEd (and from my old Forge work), but there's no promise that it'll be a duplicate, or even similar.
12 lines
268 B
Objective-C
12 lines
268 B
Objective-C
#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);
|
|
}
|