mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
20 lines
213 B
C
20 lines
213 B
C
|
#ifndef __rua_entity_h
|
||
|
#define __rua_entity_h
|
||
|
|
||
|
#include "object.h"
|
||
|
|
||
|
@interface Entity : Object
|
||
|
{
|
||
|
entity ent;
|
||
|
}
|
||
|
|
||
|
-init;
|
||
|
-initWithEntity:(entity)e;
|
||
|
-free;
|
||
|
|
||
|
-(entity)new;
|
||
|
-(entity)ent;
|
||
|
@end
|
||
|
|
||
|
#endif//__rua_entity_h
|