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