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 "Command.h"
4
5class EffectCommand : public Command
6{
7public:
8 EGameCommand getId();
9 int getPermissionLevel();
10 wstring getUsage(CommandSender *source);
11 void execute(shared_ptr<CommandSender> source, byteArray commandData);
12
13protected:
14 wstring getPlayerNames();
15
16public:
17 bool isValidWildcardPlayerArgument(wstring args, int argumentIndex);
18};