mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
7fd23fde00
* feat(Network): add snConnectToPeerTaskData and snConnectToPeerTaskResult * feat(Script): Add script global structs * fix(CMake): Try to get includes to work * chore(Globals): try to fix linux build * chore(Globals): Actually rename all instances of TIMER
27 lines
447 B
C++
27 lines
447 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace rage
|
|
{
|
|
#pragma pack(push,8)
|
|
class rlScHandle
|
|
{
|
|
public:
|
|
uint64_t m_rockstar_id; //0x0000
|
|
char m_pad[2];
|
|
uint8_t m_platform; //0x000A
|
|
uint8_t unk_0009; //0x000B
|
|
|
|
inline rlScHandle() = default;
|
|
|
|
inline rlScHandle(uint64_t rockstar_id) :
|
|
m_rockstar_id(rockstar_id),
|
|
m_platform(3),
|
|
unk_0009(0)
|
|
{
|
|
}
|
|
}; //Size: 0x0010
|
|
static_assert(sizeof(rlScHandle) == 0x10);
|
|
#pragma pack(pop)
|
|
} |