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

11 lines
305 B
C++

#pragma once
#include "ServerCommand.h"
class BanListCommand : public ServerCommand
{
public:
wstring getName() { return L"banlist"; }
wstring getUsage() { return L"/banlist [ips|players] - Shows the ban list"; }
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
};