the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "GameModeCommand.h"
4
5class GameType;
6
7class DefaultGameModeCommand : public GameModeCommand
8{
9public:
10 virtual EGameCommand getId();
11 virtual void execute(shared_ptr<CommandSender> source, byteArray commandData);
12
13protected:
14 void doSetGameType(GameType *newGameType);
15};