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
15 lines
365 B
C++
15 lines
365 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace rage
|
|
{
|
|
class rlQueryPresenceAttributesContext
|
|
{
|
|
public:
|
|
char m_presence_attribute_key[64]; //0x0000
|
|
char m_presence_attribute_value[256]; //0x0040
|
|
uint32_t m_presence_attibute_type; //0x0140
|
|
char pad_0144[4]; //0x0144
|
|
}; //Size: 0x0148
|
|
static_assert(sizeof(rage::rlQueryPresenceAttributesContext) == 0x148);
|
|
} |