mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00
15 lines
214 B
C++
15 lines
214 B
C++
#include "tabs.hpp"
|
|
#include "core/globals.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void tab_main::tab_self()
|
|
{
|
|
if (ImGui::BeginTabItem("Self"))
|
|
{
|
|
ImGui::Checkbox("No Clip", &g.self.noclip);
|
|
|
|
ImGui::EndTabItem();
|
|
}
|
|
}
|
|
} |