quakeforge/tools/Forge/Headers/EntityArray.h
Jeff Teunissen 25f8a50ef4 Okay, that was stupid. ProjectCenter isn't good enough yet, so I'm back to
writing makefiles by hand.

Add a makefile preamble to set up our flags.

Compartmentalize all the headers into a Headers/ dir.
2001-02-27 21:18:27 +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