#include "main_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(); } } }