#ifndef PLAYER_HPP_INCLUDED #define PLAYER_HPP_INCLUDED #include "Character.hpp" #include "../JavaClass/Class.hpp" #include #include #include #include "PlayerInfo.hpp" class Player : public Character { public: Player(); Player(const void* Obj); Player(const Player& P); static Class GetClass(); std::vector GetActions() const; std::int32_t GetCombatLevel() const; bool GetHidden() const; PlayerInfo GetInfo() const; std::string GetName() const; std::int32_t GetOverheadIcon() const; std::int32_t GetSkullIcon() const; std::int32_t GetTeam() const; std::int32_t GetTotalLevel() const; }; #endif // PLAYER_HPP_INCLUDED