Update tab_self.cpp

This commit is contained in:
karifeld 2021-12-25 20:26:45 +08:00 committed by GitHub
parent dd92e6af0e
commit 53d38b0042
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();
}
}
}
}