mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 03:13:36 +00:00
14 lines
365 B
C++
14 lines
365 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "minecraft/commands/Command.h"
|
|
#include "minecraft/commands/CommandsEnum.h"
|
|
|
|
class KillCommand : public Command {
|
|
public:
|
|
virtual EGameCommand getId();
|
|
virtual int getPermissionLevel();
|
|
virtual void execute(std::shared_ptr<CommandSender> source,
|
|
std::vector<uint8_t>& commandData);
|
|
}; |