summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 0738984..8e9aad5 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -1,6 +1,7 @@
#include "game.hpp"
+#include "imgui.h"
#include "vendor/glm_include.hpp"
#include "game-settings.hpp"
@@ -380,6 +381,10 @@ void RecordImGuiEditorWrapper() {
}
ImGui::EndMenu();
}
+ if (ImGui::BeginMenu("Debug")) {
+ ImGui::Checkbox("Show Debug Hitboxes", &pkeSettings.isRenderingDebug);
+ ImGui::EndMenu();
+ }
ImGui::EndMainMenuBar();
}