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