mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-22 05:36:24 +00:00
12 lines
277 B
C++
12 lines
277 B
C++
#pragma once
|
|
|
|
#include "ServerCommand.h"
|
|
|
|
class KillServerCommand : public ServerCommand
|
|
{
|
|
public:
|
|
wstring getName() { return L"kill"; }
|
|
wstring getUsage() { return L"/kill <player>"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|