2022-12-06 16:12:02 +00:00
|
|
|
#include "views/view.hpp"
|
|
|
|
#include "util/teleport.hpp"
|
|
|
|
#include "util/vehicle.hpp"
|
|
|
|
|
|
|
|
namespace big
|
|
|
|
{
|
|
|
|
void view::player_troll()
|
|
|
|
{
|
|
|
|
if (ImGui::TreeNode("Troll"))
|
|
|
|
{
|
2022-12-22 21:23:32 +00:00
|
|
|
components::player_command_button<"playertp">(g_player_service->get_selected());
|
2022-12-06 16:12:02 +00:00
|
|
|
ImGui::SameLine();
|
2022-12-22 21:23:32 +00:00
|
|
|
components::player_command_button<"bring">(g_player_service->get_selected());
|
2022-12-06 16:12:02 +00:00
|
|
|
|
|
|
|
|
2022-12-22 21:23:32 +00:00
|
|
|
components::player_command_button<"playervehtp">(g_player_service->get_selected());
|
|
|
|
components::player_command_button<"rcplayer">(g_player_service->get_selected());
|
2022-12-06 16:12:02 +00:00
|
|
|
|
|
|
|
ImGui::TreePop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|