mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
18 lines
268 B
C
18 lines
268 B
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
|
||
|
|