mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-04 00:23:23 +08:00
Fix dynamic entity game state data node (#69)
This commit is contained in:
parent
30623f6873
commit
86f82e3a52
@ -3,6 +3,13 @@
|
|||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
#pragma pack(push, 4)
|
#pragma pack(push, 4)
|
||||||
|
struct CDecorator
|
||||||
|
{
|
||||||
|
uint32_t m_type;
|
||||||
|
uint32_t m_value;
|
||||||
|
uint32_t m_name_hash;
|
||||||
|
};
|
||||||
|
|
||||||
class CDynamicEntityGameStateDataNode
|
class CDynamicEntityGameStateDataNode
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -11,9 +18,7 @@ public:
|
|||||||
bool unk_00C4; // 0x00C4
|
bool unk_00C4; // 0x00C4
|
||||||
bool unk_00C5; // 0x00C5
|
bool unk_00C5; // 0x00C5
|
||||||
uint32_t m_decor_count; // 0x00C8
|
uint32_t m_decor_count; // 0x00C8
|
||||||
uint32_t m_decor_type[12]; // 0x00CC
|
CDecorator m_decors[12]; // 0x00CC
|
||||||
uint32_t m_decor_value[12]; // 0x00FC
|
|
||||||
uint32_t m_decor_name_hash[12]; // 0x012C
|
|
||||||
}; //Size: 0x15C
|
}; //Size: 0x15C
|
||||||
static_assert(sizeof(CDynamicEntityGameStateDataNode) == 0x15C);
|
static_assert(sizeof(CDynamicEntityGameStateDataNode) == 0x15C);
|
||||||
#pragma pack(pop)
|
#pragma pack(pop)
|
Loading…
x
Reference in New Issue
Block a user