4jcraft/targets/minecraft/commands/common/ExperienceCommand.h
2026-04-01 13:27:58 -05:00

16 lines
393 B
C++

#pragma once
#include <stdint.h>
#include "minecraft/commands/Command.h"
#include "minecraft/commands/CommandsEnum.h"
class CommandSender;
class ExperienceCommand : public Command {
public:
virtual EGameCommand getId();
virtual int getPermissionLevel();
virtual void execute(std::shared_ptr<CommandSender> source,
std::vector<uint8_t>& commandData);
};