mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 03:23:37 +00:00
16 lines
393 B
C++
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);
|
|
}; |