mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 13:29:48 +00:00
15 lines
246 B
C
15 lines
246 B
C
#pragma once
|
|
|
|
#ifndef INIT_H
|
|
#define INIT_H
|
|
|
|
#include "ob.h"
|
|
#include "export.h"
|
|
EXPORT void DeleteList(CBody *);
|
|
EXPORT void Init_AtEnd(void);
|
|
EXPORT void Init_AtStart(i32);
|
|
EXPORT void Init_Cleanup(i32);
|
|
EXPORT void Init_KillAll(void);
|
|
|
|
#endif
|