mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-22 10:57:14 +00:00
12 lines
303 B
C++
12 lines
303 B
C++
#pragma once
|
|
|
|
#include "ServerCommand.h"
|
|
|
|
class GiveServerCommand : public ServerCommand
|
|
{
|
|
public:
|
|
wstring getName() { return L"give"; }
|
|
wstring getUsage() { return L"/give <player> <item id> [amount] [data]"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|