GTAV-Classes/rage/rlSessionInfo.hpp

16 lines
322 B
C++
Raw Permalink Normal View History

2024-09-24 21:24:45 -04:00
#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);
}