1 2 3 4 5 6 7 8 9 10 11 12 13 14 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); };