aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/TeleportCommand.h
blob: 9015a52dbb7bb23561437812fb2cd8ef89856b88 (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(shared_ptr<CommandSender> source, byteArray commandData);

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