2022-08-28 16:40:56 +08: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
|
|
|
|
};
|
2023-02-03 06:55:50 +08:00
|
|
|
static_assert(sizeof(rlSessionInfo) == 0xD0);
|
2022-08-28 16:40:56 +08:00
|
|
|
}
|