Update tab_self.cpp

This commit is contained in:
karifeld 2021-12-25 20:26:45 +08:00 committed by GitHub
parent 8efde2daa6
commit 0f085a880b

View File

@ -23,10 +23,15 @@ namespace big
if (ImGui::TreeNode("General")) if (ImGui::TreeNode("General"))
{ {
ImGui::Checkbox("God Mode", &g.self.godmode); ImGui::Checkbox("God Mode", &g.self.godmode);
ImGui::SameLine();
ImGui::Checkbox("Off Radar", &g.self.off_radar); ImGui::Checkbox("Off Radar", &g.self.off_radar);
ImGui::SameLine();
ImGui::Checkbox("Free Cam", &g.self.free_cam); ImGui::Checkbox("Free Cam", &g.self.free_cam);
ImGui::Checkbox("No Clip", &g.self.noclip); ImGui::Checkbox("No Clip", &g.self.noclip);
ImGui::SameLine();
ImGui::Checkbox("No Ragdoll", &g.self.no_ragdoll); ImGui::Checkbox("No Ragdoll", &g.self.no_ragdoll);
ImGui::SameLine();
ImGui::Checkbox("Super Run", &g.self.super_run); ImGui::Checkbox("Super Run", &g.self.super_run);
} }
@ -100,4 +105,4 @@ namespace big
ImGui::EndTabItem(); ImGui::EndTabItem();
} }
} }
} }