mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
15 lines
381 B
C++
15 lines
381 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include "netsync/CProjectBaseSyncDataNode.hpp"
|
|
|
|
#pragma pack(push, 4)
|
|
class CPedComponentReservationDataNode : CSyncDataNodeInfrequent
|
|
{
|
|
public:
|
|
uint32_t m_num_peds_using_component; //0x00C0
|
|
uint16_t m_peds_using_component[32]; //0x00C4
|
|
}; //Size: 0x00C8
|
|
#pragma pack(pop)
|
|
|
|
static_assert(sizeof(CPedComponentReservationDataNode) == 0x104);
|