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