Add skip title opening and create save with debug inventory enhancements (#312)

* add skip title opening and save with debug inv enhancements

* feedback
This commit is contained in:
Archez
2024-05-22 09:05:03 -05:00
committed by Garrett Cox
parent a88609ef06
commit d4fff4c5fb
7 changed files with 143 additions and 16 deletions
+9 -7
View File
@@ -1,14 +1,16 @@
#pragma once
#ifndef DEVELOPER_TOOLS_H
#define DEVELOPER_TOOLS_H
#ifdef __cplusplus
extern "C" {
#endif
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();
#ifdef __cplusplus
}
#endif
#endif // DEVELOPER_TOOLS_H