blob: 751ee7ec532e327d009d161f8b1525e5a5c0b392 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef DEVELOPER_TOOLS_H
#define DEVELOPER_TOOLS_H
#define WARP_POINT_CVAR "gDeveloperTools.WarpPoint."
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
|