mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 15:17:23 +08:00
22 lines
337 B
C++
22 lines
337 B
C++
![]() |
#include "tabs.hpp"
|
||
|
#include "fiber_pool.hpp"
|
||
|
#include "util/teleport.hpp"
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
void tab_main::tab_teleport()
|
||
|
{
|
||
|
if (ImGui::BeginTabItem("Teleport"))
|
||
|
{
|
||
|
if (ImGui::Button("Waypoint"))
|
||
|
{
|
||
|
QUEUE_JOB_BEGIN_CLAUSE()
|
||
|
{
|
||
|
teleport::to_waypoint();
|
||
|
}QUEUE_JOB_END_CLAUSE
|
||
|
}
|
||
|
|
||
|
ImGui::EndTabItem();
|
||
|
}
|
||
|
}
|
||
|
}
|