Source release of QuakeEd, the map editing application on NEXTSTEP for Quake.

This commit is contained in:
Travis Bradshaw
2012-01-31 15:51:12 -06:00
parent 6df9737f9c
commit e4cb063480
82 changed files with 28345 additions and 0 deletions

15
QuakeEd/QuakeEd_main.m Normal file
View File

@@ -0,0 +1,15 @@
/* 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);
}