Files
minecraft-pe-0.6.1/src/commands/CommandKick.hpp
2026-04-04 01:13:56 +03:00

9 lines
222 B
C++

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