mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
21 lines
331 B
C++
21 lines
331 B
C++
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace rage
|
||
|
{
|
||
|
#pragma pack(push,8)
|
||
|
class rlGamerHandle
|
||
|
{
|
||
|
public:
|
||
|
uint64_t m_rockstar_id;
|
||
|
uint64_t m_unk;
|
||
|
|
||
|
inline rlGamerHandle(uint64_t rockstar_id) :
|
||
|
m_rockstar_id(rockstar_id),
|
||
|
m_unk(3)
|
||
|
{
|
||
|
}
|
||
|
};
|
||
|
#pragma pack(pop)
|
||
|
}
|