mirror of
https://github.com/YimMenu/RDR-Classes.git
synced 2024-12-22 14:37:30 +08:00
a9d08a9b9d
* Update rlGamerInfo.hpp some minor issues * Update rlGamerInfoBase.hpp
21 lines
409 B
C++
21 lines
409 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include "rlGamerInfoBase.hpp"
|
|
|
|
#pragma pack(push, 8)
|
|
namespace rage
|
|
{
|
|
class rlGamerInfo : public rage::rlGamerInfoBase
|
|
{
|
|
public:
|
|
uint64_t m_HostToken;
|
|
uint64_t m_PeerId2;
|
|
rage::rlGamerHandle m_GamerHandle2;
|
|
uint32_t m_ProfileIndex;
|
|
char m_Name[21];
|
|
uint8_t m_Flags;
|
|
};
|
|
static_assert(sizeof(rage::rlGamerInfo) == 0xD8);
|
|
}
|
|
#pragma pack(pop)
|