2022-11-21 00:34:38 +08:00
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "../rage/rlGamerInfo.hpp"
|
2023-07-23 01:59:25 +08:00
|
|
|
#include "netConnection.hpp"
|
2022-12-06 06:14:31 +08:00
|
|
|
|
|
|
|
#pragma pack(push, 8)
|
2022-11-21 00:34:38 +08:00
|
|
|
class RemoteGamerInfoMsg
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
uint64_t m_session_id; //0x0000
|
|
|
|
class rage::rlGamerInfo m_gamer_info; //0x0008
|
2023-07-23 01:59:25 +08:00
|
|
|
class rage::netPeerAddress m_peer_address; //0x00A0
|
2022-12-06 06:14:31 +08:00
|
|
|
uint32_t unk_0xC0; //0x00C0
|
|
|
|
uint32_t m_unk_struct_size; //0x00C4
|
|
|
|
char m_unk_struct[512]; //0x00C8 Might be bitbuffer data
|
|
|
|
uint32_t m_num_handles; //0x02C8
|
|
|
|
class rage::rlGamerHandle m_handles[32]; //0x02D0
|
|
|
|
}; //Size: 0x04D0
|
2023-06-15 04:16:19 +08:00
|
|
|
static_assert(sizeof(RemoteGamerInfoMsg) == 0x528);
|
2022-11-21 00:34:38 +08:00
|
|
|
#pragma pack(pop)
|