quakeforge/tools/Forge/EntityArray.h
Jeff Teunissen 317d3bddb8 New program (incomplete, and horridly broken): Forge.app. It's going to be
a GNUstep port of the original Quake editor for NeXTstep, QuakeEd.app.
2001-02-09 01:52:44 +00:00

17 lines
268 B
Objective-C

#import <Foundation/Foundation.h>
#import "mathlib.h"
extern id entity_classes_i;
@interface EntityArray: NSMutableArray
{
id nullclass;
char *source_path;
}
- initForSourceDirectory: (char *)path;
- (id)classForName: (char *)name;
- (void)scanDirectory;
@end