mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
45 lines
886 B
Objective-C
45 lines
886 B
Objective-C
#ifndef EntityClass_h
|
|
#define EntityClass_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
#include "QF/mathlib.h"
|
|
|
|
typedef enum { esize_model, esize_fixed } esize_t;
|
|
|
|
#define MAX_FLAGS 8
|
|
|
|
@interface EntityClass:NSObject
|
|
{
|
|
char *name;
|
|
esize_t esize;
|
|
vec3_t mins, maxs;
|
|
vec3_t color;
|
|
char *comments;
|
|
char *flagnames[MAX_FLAGS];
|
|
}
|
|
|
|
-initFromText:(const char *)text source:(const char *) filename;
|
|
|
|
-(char *) classname;
|
|
-(esize_t) esize;
|
|
-(float *) mins; // only for esize_fixed
|
|
-(float *) maxs; // only for esize_fixed
|
|
-(float *) drawColor;
|
|
-(char *) comments;
|
|
-(char *) flagName:(unsigned) flagnum;
|
|
|
|
@end extern id entity_classes_i;
|
|
|
|
@interface EntityClassList:NSMutableArray
|
|
{
|
|
id nullclass;
|
|
char *source_path;
|
|
}
|
|
|
|
-initForSourceDirectory:(char *) path;
|
|
-(id) classForName:(char *) name;
|
|
-(void) scanDirectory;
|
|
|
|
@end
|
|
#endif // EntityClass_h
|