This commit is contained in:
Asuro
2025-03-07 00:37:44 +01:00
parent 467a4a0491
commit 96a122f932
17 changed files with 944 additions and 16 deletions

View File

@@ -38,6 +38,13 @@ namespace Game
InputMode InputM = InputMode::Game;
};
struct InstanceDebugData
{
uint16_t SelectedDebugLevel = UINT16_MAX;
uint64_t ImguiIniSize = 0;
char ImguiIni[4096]{0};
};
struct GameInstance
{
bool IsInitialized = false;
@@ -46,7 +53,6 @@ namespace Game
Time Time;
PlayerData Player;
Level GameLevel;
uint64_t ImguiIniSize = 0;
char ImguiIni[4096]{0};
InstanceDebugData DebugData;
};
} // namespace Game