mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-07 18:03:31 +08:00
14 lines
306 B
C++
14 lines
306 B
C++
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
#pragma pack(push,4)
|
||
|
class CPedTaskSpecificDataNode
|
||
|
{
|
||
|
private:
|
||
|
char pad_0000[200]; //0x0000
|
||
|
uint32_t m_buffer_size; //0x00C8
|
||
|
uint8_t m_task_data_buffer[603]; //0x00CC
|
||
|
}; //Size: 0x0328
|
||
|
static_assert(sizeof(CPedTaskSpecificDataNode) == 0x328);
|
||
|
#pragma pack(pop)
|