Files
MinecraftConsoles/Minecraft.World/ExperienceCommand.h

15 lines
285 B
C
Raw Normal View History

2026-03-01 12:16:08 +08:00
#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);
};