2019-08-25 00:46:40 -04:00
|
|
|
#ifndef _SPAWN_OBJECT_H
|
|
|
|
#define _SPAWN_OBJECT_H
|
|
|
|
|
|
|
|
struct ObjectNode;
|
|
|
|
struct Object;
|
|
|
|
|
|
|
|
void init_free_object_list(void);
|
|
|
|
void clear_object_lists(struct ObjectNode *objLists);
|
|
|
|
void unload_object(struct Object *obj);
|
2020-04-03 14:57:26 -04:00
|
|
|
struct Object *create_object(const BehaviorScript *bhvScript);
|
2019-08-25 00:46:40 -04:00
|
|
|
void mark_obj_for_deletion(struct Object *obj);
|
|
|
|
|
|
|
|
#endif /* _SPAWN_OBJECT_H */
|