You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
17 lines
373 B
C
17 lines
373 B
C
#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 InitDeveloperTools();
|
|
|
|
#endif // DEVELOPER_TOOLS_H
|