feat(Self): much more organized

This commit is contained in:
karifeld 2021-12-25 17:22:24 +08:00
parent 0c01593ab9
commit e894de848f

View File

@ -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"))
{