mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
9 lines
165 B
Objective-C
9 lines
165 B
Objective-C
#import <AppKit/NSApplication.h>
|
|
|
|
#define APP_NAME @"Forge"
|
|
|
|
int
|
|
main (int argc, const char *argv[], const char *env[])
|
|
{
|
|
return NSApplicationMain (argc, argv);
|
|
}
|