aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Server/Console/commands/help/CliCommandHelp.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.Server/Console/commands/help/CliCommandHelp.h')
-rw-r--r--Minecraft.Server/Console/commands/help/CliCommandHelp.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Minecraft.Server/Console/commands/help/CliCommandHelp.h b/Minecraft.Server/Console/commands/help/CliCommandHelp.h
new file mode 100644
index 00000000..3612442f
--- /dev/null
+++ b/Minecraft.Server/Console/commands/help/CliCommandHelp.h
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "..\IServerCliCommand.h"
+
+namespace ServerRuntime
+{
+ class CliCommandHelp : public IServerCliCommand
+ {
+ public:
+ virtual const char *Name() const;
+ virtual std::vector<std::string> Aliases() const;
+ virtual const char *Usage() const;
+ virtual const char *Description() const;
+ virtual bool Execute(const ServerCliParsedLine &line, ServerCliEngine *engine);
+ };
+}
+