blob: 302be9f501673289e8d792b2adf521844f43676d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "Command.h"
class GameType;
class GameModeCommand : public Command
{
public:
virtual EGameCommand getId();
int getPermissionLevel();
virtual void execute(shared_ptr<CommandSender> source, byteArray commandData);
protected:
GameType *getModeForString(shared_ptr<CommandSender> source, const wstring &name);
};
|