Files
minecraft-pe-0.6.1/src/commands/CommandBanIp.hpp
2026-07-27 00:12:58 +02:00

9 lines
224 B
C++

#include "Command.hpp"
class CommandBanIp : public Command {
public:
CommandBanIp();
std::string execute(Minecraft& mc, Player& player, const std::vector<std::string>& args);
std::string help(Minecraft& mc);
};