mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-22 10:26:16 +00:00
12 lines
311 B
C++
12 lines
311 B
C++
#pragma once
|
|
|
|
#include "ServerCommand.h"
|
|
|
|
class EnchantServerCommand : public ServerCommand
|
|
{
|
|
public:
|
|
wstring getName() { return L"enchant"; }
|
|
wstring getUsage() { return L"/enchant <player> <enchantment ID> [level]"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|