aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/KillCommand.h
blob: 50db2c7915de960dd2847eeb1cdf77a66e0e7a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "Command.h"

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