Temp-Classes/rage/rlQueryPresenceAttributesContext.hpp
maybegreat48 8559fe7a9e Minor changes (#121)
* Update rlQueryPresenceAttributesContext.hpp

* Update rlScHandle.hpp
2023-07-15 20:46:17 +02:00

20 lines
435 B
C++

#pragma once
#include <cstdint>
namespace rage
{
class rlQueryPresenceAttributesContext
{
public:
char m_presence_attribute_key[64]; //0x0000
union
{
char m_presence_attribute_string_value[256]; //0x0040
uint64_t m_presence_attribute_int_value;
};
uint32_t m_presence_attibute_type; //0x0140
char pad_0144[4]; //0x0144
}; //Size: 0x0148
static_assert(sizeof(rage::rlQueryPresenceAttributesContext) == 0x148);
}