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

#include "Command.h"

class CommandSender;

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