mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-23 06:57:34 +08:00
4022845783
* Create RemoteGamerInfoMsg.hpp * Create CMsgTextMessage.hpp
15 lines
378 B
C++
15 lines
378 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include "../rage/rlGamerInfo.hpp"
|
|
|
|
#pragma pack(push, 1)
|
|
class RemoteGamerInfoMsg
|
|
{
|
|
public:
|
|
uint64_t m_session_id; //0x0000
|
|
class rage::rlGamerInfo m_gamer_info; //0x0008
|
|
char pad_00A0[256]; //0x00A0 (tons of more fields down here, like IP addresses...)
|
|
}; //Size: 0x01A0
|
|
static_assert(sizeof(RemoteGamerInfoMsg) == 0x1A0);
|
|
#pragma pack(pop)
|