Files
LCEMP-Server/Commands/KillServerCommand.h
2026-03-15 22:25:51 -03:00

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);
};