Files
mc-lce/Minecraft.World/ExperienceCommand.h
2026-03-01 02:38:58 +02:00

15 lines
285 B
C++

#pragma once
#include "Command.h"
class CommandSender;
class ExperienceCommand : public Command
{
public:
virtual EGameCommand getId();
virtual void execute(shared_ptr<CommandSender> source, byteArray commandData);
protected:
shared_ptr<Player> getPlayer(PlayerUID playerId);
};