forked from Kolyah35/minecraft-pe-0.6.1
9 lines
213 B
C++
9 lines
213 B
C++
#include "Command.hpp"
|
|
|
|
class CommandKick : public Command {
|
|
public:
|
|
CommandKick();
|
|
|
|
void execute(Minecraft& mc, Player& player, const std::vector<std::string>& args);
|
|
void printHelp(Minecraft& mc);
|
|
}; |