mirror of https://github.com/sm64pc/sm64pc.git
14 lines
353 B
C
14 lines
353 B
C
#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);
|
|
struct Object *create_object(const BehaviorScript *bhvScript);
|
|
void mark_obj_for_deletion(struct Object *obj);
|
|
|
|
#endif /* _SPAWN_OBJECT_H */
|