mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
16 lines
327 B
Mathematica
16 lines
327 B
Mathematica
|
/* 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 ([NSApp loadNibSection:"QuakeEd.nib" owner:NSApp withNames:NO])
|
||
|
[NSApp run];
|
||
|
|
||
|
[NSApp free];
|
||
|
exit(0);
|
||
|
}
|