AlpacaLibrary/Include/Core/Classes/PlayerInfo.hpp

34 lines
885 B
C++
Raw Permalink Normal View History

2017-12-25 23:49:48 +00:00
#ifndef PLAYERINFO_HPP_INCLUDED
#define PLAYERINFO_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include <cstdint>
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class PlayerInfo : public Object
{
public:
PlayerInfo(const void* Obj);
2018-12-27 18:17:09 +00:00
PlayerInfo() = default;
PlayerInfo(PlayerInfo&& Obj) = default;
PlayerInfo(const PlayerInfo& Obj) = default;
PlayerInfo& operator=(PlayerInfo&& Obj) = default;
PlayerInfo& operator=(const PlayerInfo& Obj) = default;
2018-03-18 14:38:29 +00:00
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::vector<std::int32_t> GetEquipment() const;
bool GetGender() const;
std::int64_t GetHash() const;
std::int64_t GetModelID() const;
std::int32_t GetNPCModelID() const;
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
#endif // PLAYERINFO_HPP_INCLUDED