mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 15:23:37 +00:00
11 lines
268 B
C++
11 lines
268 B
C++
#pragma once
|
|
|
|
#include "Command.h"
|
|
|
|
class KillCommand : public Command {
|
|
public:
|
|
virtual EGameCommand getId();
|
|
virtual int getPermissionLevel();
|
|
virtual void execute(std::shared_ptr<CommandSender> source,
|
|
byteArray commandData);
|
|
}; |