Files

17 lines
373 B
C
Raw Permalink Normal View History

#ifndef DEVELOPER_TOOLS_H
#define DEVELOPER_TOOLS_H
2024-04-17 21:29:15 -05:00
enum DebugSaveInfo {
DEBUG_SAVE_INFO_NONE,
DEBUG_SAVE_INFO_VANILLA_DEBUG,
DEBUG_SAVE_INFO_COMPLETE,
};
2024-04-17 21:29:15 -05:00
void RegisterDebugSaveCreate();
2024-04-17 21:29:15 -05:00
void RegisterPreventActorUpdateHooks();
void RegisterPreventActorDrawHooks();
void RegisterPreventActorInitHooks();
void InitDeveloperTools();
#endif // DEVELOPER_TOOLS_H