mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-22 06:46:47 +00:00
19 lines
417 B
C++
19 lines
417 B
C++
#pragma once
|
|
|
|
#include "ServerCommand.h"
|
|
|
|
class ConsoleCommandDispatcher;
|
|
|
|
class HelpCommand : public ServerCommand
|
|
{
|
|
private:
|
|
ConsoleCommandDispatcher *dispatcher;
|
|
|
|
public:
|
|
HelpCommand(ConsoleCommandDispatcher *dispatcher);
|
|
|
|
wstring getName() { return L"help"; }
|
|
wstring getUsage() { return L"/help [page|command name]"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|