Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
366 B · 18 lines
C
at main
123456789101112131415161718#pragma once#include "Command.h"
class GameCommandPacket;
class ToggleDownfallCommand : public Command{public: virtual EGameCommand getId(); virtual int getPermissionLevel(); virtual void execute(shared_ptr<CommandSender> source, byteArray commandData);
protected: void doToggleDownfall();
public: static shared_ptr<GameCommandPacket> preparePacket();};