diff options
Diffstat (limited to 'Minecraft.World/ExperienceCommand.h')
| -rw-r--r-- | Minecraft.World/ExperienceCommand.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Minecraft.World/ExperienceCommand.h b/Minecraft.World/ExperienceCommand.h new file mode 100644 index 00000000..b1dd2cbe --- /dev/null +++ b/Minecraft.World/ExperienceCommand.h @@ -0,0 +1,15 @@ +#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); +};
\ No newline at end of file |
