mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00
14 lines
216 B
C++
14 lines
216 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::EndTabItem();
|
||
|
}
|
||
|
}
|
||
|
}
|