mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-21 22:35:27 +00:00
11 lines
341 B
C++
11 lines
341 B
C++
#pragma once
|
|
#include "ServerCommand.h"
|
|
|
|
class WhitelistCommand : public ServerCommand
|
|
{
|
|
public:
|
|
wstring getName() { return L"whitelist"; }
|
|
wstring getUsage() { return L"/whitelist <on|off|list|add|remove|reload> [player] - Manages the whitelist"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|