This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/views/self/view_teleport.cpp

27 lines
644 B
C++
Raw Normal View History

2022-02-28 23:04:56 +01:00
#include "fiber_pool.hpp"
#include "util/globals.hpp"
2022-07-27 14:39:22 +02:00
#include "util/mobile.hpp"
2022-02-28 23:04:56 +01:00
#include "util/teleport.hpp"
#include "util/vehicle.hpp"
#include "views/view.hpp"
2022-02-28 23:04:56 +01:00
namespace big
{
2022-06-27 15:45:26 +02:00
void view::teleport()
{
ImGui::Text("BLIPS"_T.data());
2022-02-28 23:04:56 +01:00
components::command_button<"waypointtp">({}, "Waypoint");
ImGui::SameLine();
components::command_button<"objectivetp">({}, "Objective");
components::command_checkbox<"autotptowp">();
2022-12-06 16:12:02 +00:00
ImGui::Text("VEHICLES"_T.data());
components::command_button<"lastvehtp">();
ImGui::SameLine();
components::command_button<"bringpv">();
ImGui::SameLine();
components::command_button<"pvtp">();
2022-02-28 23:04:56 +01:00
}
2022-06-27 15:45:26 +02:00
}