4jcraft/Minecraft.Client/Commands/TeleportCommand.h
2026-03-05 03:29:23 -05:00

12 lines
325 B
C++

#pragma once
#include "../../Minecraft.World/Commands/Command.h"
class TeleportCommand : public Command
{
public:
virtual EGameCommand getId();
virtual void execute(shared_ptr<CommandSender> source, byteArray commandData);
static shared_ptr<GameCommandPacket> preparePacket(PlayerUID subject, PlayerUID destination);
};