This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
263 B
C++
Raw Normal View History

#include "tabs.hpp"
#include "core/globals.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);
ImGui::EndTabItem();
}
}
}