mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
14 lines
272 B
C++
14 lines
272 B
C++
|
#pragma once
|
||
|
#include "netSyncNodeBase.hpp"
|
||
|
|
||
|
namespace rage
|
||
|
{
|
||
|
class netSyncParentNode : public netSyncNodeBase
|
||
|
{
|
||
|
public:
|
||
|
char pad_0040[32];
|
||
|
};
|
||
|
static_assert(sizeof(netSyncParentNode) == 0x60);
|
||
|
}
|
||
|
|
||
|
class CProjectBaseSyncParentNode : public rage::netSyncParentNode {};
|