Files
LCEMP-Server/Commands/EnchantServerCommand.h
2026-03-15 22:25:51 -03:00

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);
};