Files
minecraft-pe-0.6.1/src/commands/CommandBan.hpp
2026-05-09 16:37:11 +02:00

9 lines
220 B
C++

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