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

11 lines
302 B
C++

#pragma once
#include "ServerCommand.h"
class BanIpCommand : public ServerCommand
{
public:
wstring getName() { return L"ban-ip"; }
wstring getUsage() { return L"/ban-ip <address|name> - Bans an IP address"; }
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
};