quakeforge/tools/Forge/main.m
Jeff Teunissen 5ff1de398e Okay, tiny skeleton for Forge. It will be cleaner and probably faster to
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.
2001-11-05 19:58:25 +00:00

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);
}