mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
16 lines
322 B
C++
16 lines
322 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "../rage/rlGamerInfoBase.hpp"
|
|
|
|
namespace rage
|
|
{
|
|
class rlSessionInfo
|
|
{
|
|
public:
|
|
uint64_t m_unk; //0x0000
|
|
uint64_t m_session_token; //0x0008
|
|
rlGamerInfoBase m_net_player_data; //0x0010
|
|
};
|
|
static_assert(sizeof(rlSessionInfo) == 0xD0);
|
|
} |