TmpMenu/BigBaseV2/src/gui/window/main/tab_teleport.cpp

22 lines
342 B
C++
Raw Normal View History

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