mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
12 lines
361 B
C++
12 lines
361 B
C++
#pragma once
|
|
#include "CEntitySyncTreeBase.hpp"
|
|
#include "netsync/netSyncParentNode.hpp"
|
|
|
|
#include "netsync/nodes/dynamic_entity/CDynamicEntityGameStateDataNode.hpp"
|
|
|
|
class CDynamicEntitySyncTreeBase : public CEntitySyncTreeBase
|
|
{
|
|
public:
|
|
char m_dynamic_entity_game_state_data_node[0xE28 - 0xCD8];
|
|
};
|
|
static_assert(sizeof(CDynamicEntitySyncTreeBase) == 0xE28); |