TmpMenu/BigBaseV2/src/gui/window/main/tab_tunables.cpp

15 lines
278 B
C++
Raw Normal View History

2021-07-24 00:16:04 +02:00
#include "main_tabs.hpp"
namespace big
{
void tab_main::tab_tunables()
{
if (ImGui::BeginTabItem("Tunables"))
{
ImGui::Checkbox("Disable Phone", &g.tunables.disable_phone);
2021-07-24 14:39:34 +02:00
ImGui::Checkbox("No Idle Kick", &g.tunables.no_idle_kick);
2021-07-24 00:16:04 +02:00
ImGui::EndTabItem();
}
}
}