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

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