mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 23:07:26 +08:00
16 lines
289 B
C++
16 lines
289 B
C++
#include "tabs.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void tab_main::tab_self()
|
|
{
|
|
if (ImGui::BeginTabItem("Self"))
|
|
{
|
|
ImGui::Checkbox("God Mode", &g.self.godmode);
|
|
ImGui::Checkbox("No Clip", &g.self.noclip);
|
|
ImGui::Checkbox("No Ragdoll", &g.self.no_ragdoll);
|
|
|
|
ImGui::EndTabItem();
|
|
}
|
|
}
|
|
} |