Write ImGui config to an appropriate folder instead of the current one.

This commit is contained in:
2025-03-02 18:41:27 +01:00
parent f51dd5b437
commit 7a18cce60c
3 changed files with 99 additions and 1 deletions

View File

@@ -8,6 +8,10 @@ namespace
void render()
{
ImGui::Text("hi");
ImGui::Begin("Test");
ImGui::Text("Test Content");
ImGui::End();
}
}