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

9 lines
218 B
C++

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