diff --git a/BigBaseV2/src/gui/window/main/tab_self.cpp b/BigBaseV2/src/gui/window/main/tab_self.cpp index 71343ff1..36081775 100644 --- a/BigBaseV2/src/gui/window/main/tab_self.cpp +++ b/BigBaseV2/src/gui/window/main/tab_self.cpp @@ -23,10 +23,15 @@ namespace big if (ImGui::TreeNode("General")) { ImGui::Checkbox("God Mode", &g.self.godmode); + ImGui::SameLine(); ImGui::Checkbox("Off Radar", &g.self.off_radar); + ImGui::SameLine(); ImGui::Checkbox("Free Cam", &g.self.free_cam); + ImGui::Checkbox("No Clip", &g.self.noclip); + ImGui::SameLine(); ImGui::Checkbox("No Ragdoll", &g.self.no_ragdoll); + ImGui::SameLine(); ImGui::Checkbox("Super Run", &g.self.super_run); } @@ -100,4 +105,4 @@ namespace big ImGui::EndTabItem(); } } -} \ No newline at end of file +}