aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ExperienceCommand.h
blob: b1dd2cbe887a652349809e5e2e1f2b20217b513d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "Command.h"

class CommandSender;

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

protected:
	shared_ptr<Player> getPlayer(PlayerUID playerId);
};