mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
18 lines
460 B
Objective-C
18 lines
460 B
Objective-C
#import <AppKit/AppKit.h>
|
|
|
|
NSString *commandOutput = @"/tmp/Forge/command.txt";
|
|
NSString *developerLogFile = @"/tmp/Forge/developer.log";
|
|
NSString *tempSaveFile = @"/tmp/Forge/temp.map";
|
|
NSString *autoSaveFile = @"/tmp/Forge/autoSave.map";
|
|
NSString *errorSaveFile = @"/tmp/Forge/errorSave.map";
|
|
|
|
int
|
|
main (int argc, char *argv[]) {
|
|
|
|
[NSApplication new];
|
|
if ([NSBundle loadNibNamed: @"Forge" owner: NSApp])
|
|
[NSApp run];
|
|
|
|
[NSApp release];
|
|
return 0;
|
|
}
|