the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 18 lines 366 B view raw
1#pragma once 2#include "Command.h" 3 4class GameCommandPacket; 5 6class ToggleDownfallCommand : public Command 7{ 8public: 9 virtual EGameCommand getId(); 10 virtual int getPermissionLevel(); 11 virtual void execute(shared_ptr<CommandSender> source, byteArray commandData); 12 13protected: 14 void doToggleDownfall(); 15 16public: 17 static shared_ptr<GameCommandPacket> preparePacket(); 18};