2001-02-09 01:52:44 +00:00
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
|
2001-03-02 07:01:51 +00:00
|
|
|
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[]) {
|
2001-02-09 01:52:44 +00:00
|
|
|
|
2001-03-02 07:01:51 +00:00
|
|
|
[NSApplication new];
|
|
|
|
if ([NSBundle loadNibNamed: @"Forge" owner: NSApp])
|
|
|
|
[NSApp run];
|
2001-02-09 01:52:44 +00:00
|
|
|
|
2001-03-02 07:01:51 +00:00
|
|
|
[NSApp release];
|
|
|
|
return 0;
|
2001-02-09 01:52:44 +00:00
|
|
|
}
|