mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 14:57:27 +08:00
15 lines
280 B
C++
15 lines
280 B
C++
#include "main_tabs.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void tab_main::tab_tunables()
|
|
{
|
|
if (ImGui::BeginTabItem("Tunables"))
|
|
{
|
|
ImGui::Checkbox("Disable Phone", &g->tunables.disable_phone);
|
|
ImGui::Checkbox("No Idle Kick", &g->tunables.no_idle_kick);
|
|
|
|
ImGui::EndTabItem();
|
|
}
|
|
}
|
|
} |