AlpacaLibary  1.63
A closed source C++ bot for OSRS
PlayerInfo.hpp
Go to the documentation of this file.
1 #ifndef PLAYERINFO_HPP_INCLUDED
2 #define PLAYERINFO_HPP_INCLUDED
3 
4 #include "../JavaClass/Object.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include <vector>
7 #include <cstdint>
8 
9 namespace Internal
10 {
11  class PlayerInfo : public Object
12  {
13  public:
14  PlayerInfo(const void* Obj);
15 
16  PlayerInfo() = default;
17  PlayerInfo(PlayerInfo&& Obj) = default;
18  PlayerInfo(const PlayerInfo& Obj) = default;
20  PlayerInfo& operator=(const PlayerInfo& Obj) = default;
21 
22  static Class GetClass();
23 
24  std::vector<std::int32_t> GetEquipment() const;
25  bool GetGender() const;
26  std::int64_t GetHash() const;
27  std::int64_t GetModelID() const;
28  std::int32_t GetNPCModelID() const;
29 
30  };
31 }
32 
33 #endif // PLAYERINFO_HPP_INCLUDED
PlayerInfo(const void *Obj)
PlayerInfo & operator=(PlayerInfo &&Obj)=default
bool GetGender() const
std::int64_t GetModelID() const
PlayerInfo(PlayerInfo &&Obj)=default
static Class GetClass()
PlayerInfo & operator=(const PlayerInfo &Obj)=default
std::int32_t GetNPCModelID() const
PlayerInfo(const PlayerInfo &Obj)=default
std::vector< std::int32_t > GetEquipment() const
std::int64_t GetHash() const