mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-03 16:13:21 +08:00
23 lines
541 B
C++
23 lines
541 B
C++
|
#pragma once
|
||
|
|
||
|
#include "netSyncNodeBase.hpp"
|
||
|
|
||
|
namespace rage
|
||
|
{
|
||
|
#pragma pack(push, 8)
|
||
|
class netSyncDataNodeBase : public netSyncNodeBase
|
||
|
{
|
||
|
public:
|
||
|
uint32_t flags; //0x40
|
||
|
uint32_t pad3; //0x44
|
||
|
uint64_t pad4; //0x48
|
||
|
|
||
|
netSyncDataNodeBase* parentData; //0x50
|
||
|
uint32_t childCount; //0x58
|
||
|
netSyncDataNodeBase* children[8]; //0x5C
|
||
|
uint8_t syncFrequencies[8]; //0x9C
|
||
|
void* nodeBuffer; //0xA4
|
||
|
};
|
||
|
static_assert(sizeof(netSyncDataNodeBase) == 0xB0);
|
||
|
#pragma pack(pop)
|
||
|
}
|