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