From e894de848fe0fe2be065511e42524b7534cb849e Mon Sep 17 00:00:00 2001 From: karifeld Date: Sat, 25 Dec 2021 17:22:24 +0800 Subject: [PATCH] feat(Self): much more organized --- BigBaseV2/src/gui/window/main/tab_self.cpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/BigBaseV2/src/gui/window/main/tab_self.cpp b/BigBaseV2/src/gui/window/main/tab_self.cpp index 52f3642e..71343ff1 100644 --- a/BigBaseV2/src/gui/window/main/tab_self.cpp +++ b/BigBaseV2/src/gui/window/main/tab_self.cpp @@ -20,12 +20,15 @@ namespace big }QUEUE_JOB_END_CLAUSE } - ImGui::Checkbox("God Mode", &g.self.godmode); - ImGui::Checkbox("Off Radar", &g.self.off_radar); - ImGui::Checkbox("Free Cam", &g.self.free_cam); - ImGui::Checkbox("No Clip", &g.self.noclip); - ImGui::Checkbox("No Ragdoll", &g.self.no_ragdoll); - ImGui::Checkbox("Super Run", &g.self.super_run); + if (ImGui::TreeNode("General")) + { + ImGui::Checkbox("God Mode", &g.self.godmode); + ImGui::Checkbox("Off Radar", &g.self.off_radar); + ImGui::Checkbox("Free Cam", &g.self.free_cam); + ImGui::Checkbox("No Clip", &g.self.noclip); + ImGui::Checkbox("No Ragdoll", &g.self.no_ragdoll); + ImGui::Checkbox("Super Run", &g.self.super_run); + } if (ImGui::TreeNode("Frame Flags")) {