mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-23 21:03:37 +00:00
17 lines
405 B
C++
17 lines
405 B
C++
#pragma once
|
|
|
|
#include "Command.h"
|
|
|
|
class EffectCommand : public Command {
|
|
public:
|
|
EGameCommand getId();
|
|
int getPermissionLevel();
|
|
std::wstring getUsage(CommandSender* source);
|
|
void execute(std::shared_ptr<CommandSender> source, byteArray commandData);
|
|
|
|
protected:
|
|
std::wstring getPlayerNames();
|
|
|
|
public:
|
|
bool isValidWildcardPlayerArgument(std::wstring args, int argumentIndex);
|
|
}; |