You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
12 lines
284 B
C
12 lines
284 B
C
#ifndef SPAWN_OBJECT_H
|
|
#define SPAWN_OBJECT_H
|
|
|
|
#include "types.h"
|
|
|
|
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);
|
|
|
|
#endif // SPAWN_OBJECT_H
|