]> icculus.org git repositories - btb/d2x.git/blob - main/entity.h
Added other SDL_(Un)LockAudio statements to protect the audio_mixcallback function
[btb/d2x.git] / main / entity.h
1 #ifndef _ENTITY_H
2 #define _ENTITY_H
3
4
5 #include "object.h"
6 #include "robot.h"
7
8
9 typedef struct entity
10 {
11         char   *name;
12         ubyte  object_type;
13         int    object_number;
14 } entity;
15
16 void entity_init(void);
17 void entity_add(ubyte object_type, int object_id, char object_name[16]);
18
19 #endif