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

11 lines
318 B
C++

#pragma once
#include "ServerCommand.h"
class XpCommand : public ServerCommand
{
public:
wstring getName() { return L"xp"; }
wstring getUsage() { return L"/xp <amount> [player] OR /xp <amount>L [player] - Gives experience"; }
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
};