aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/TeleportCommand.h
blob: b6f3b742764ead555ba9e221fa53c10394cf286f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "..\Minecraft.World\Command.h"

class TeleportCommand : public Command
{
public:
	virtual EGameCommand getId();
	virtual void execute(std::shared_ptr<CommandSender> source, byteArray commandData);

	static std::shared_ptr<GameCommandPacket> preparePacket(PlayerUID subject, PlayerUID destination);
};