mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
317d3bddb8
a GNUstep port of the original Quake editor for NeXTstep, QuakeEd.app.
15 lines
327 B
Objective-C
15 lines
327 B
Objective-C
/* Generated by the NeXT Project Builder
|
|
NOTE: Do NOT change this file -- Project Builder maintains it.
|
|
*/
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
void main(int argc, char *argv[]) {
|
|
|
|
[Application new];
|
|
if ([NXApp loadNibSection:"QuakeEd.nib" owner:NXApp withNames:NO])
|
|
[NXApp run];
|
|
|
|
[NXApp free];
|
|
exit(0);
|
|
}
|