blob: abf20d73ff3dabf583c53b65085cf7fd076315bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef DEVELOPER_TOOLS_H
#define DEVELOPER_TOOLS_H
enum DebugSaveInfo {
DEBUG_SAVE_INFO_NONE,
DEBUG_SAVE_INFO_VANILLA_DEBUG,
DEBUG_SAVE_INFO_COMPLETE,
};
void RegisterDebugSaveCreate();
void RegisterPreventActorUpdateHooks();
void RegisterPreventActorDrawHooks();
void RegisterPreventActorInitHooks();
void RenderWarpPointSection();
#endif // DEVELOPER_TOOLS_H
|