16 lines
289 B
C++
Raw Normal View History

#include "tabs.hpp"
namespace big
{
void tab_main::tab_self()
{
if (ImGui::BeginTabItem("Self"))
{
2021-05-19 18:10:59 +02:00
ImGui::Checkbox("God Mode", &g.self.godmode);
ImGui::Checkbox("No Clip", &g.self.noclip);
2021-05-21 00:52:59 +02:00
ImGui::Checkbox("No Ragdoll", &g.self.no_ragdoll);
ImGui::EndTabItem();
}
}
}