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