16 lines
263 B
C++
16 lines
263 B
C++
#include "tabs.hpp"
|
|
#include "core/globals.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::EndTabItem();
|
|
}
|
|
}
|
|
} |