2022-11-27 18:43:23 -05:00
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
2023-02-23 23:11:35 +00:00
|
|
|
#include "netsync/CProjectBaseSyncDataNode.hpp"
|
2022-11-27 18:43:23 -05:00
|
|
|
|
|
|
|
#pragma pack(push,4)
|
2023-02-23 23:11:35 +00:00
|
|
|
class CPedTaskSpecificDataNode : CSyncDataNodeFrequent
|
2022-11-27 18:43:23 -05:00
|
|
|
{
|
2023-02-23 23:11:35 +00:00
|
|
|
public:
|
2022-11-27 18:57:06 -05:00
|
|
|
uint32_t m_task_index; //0x00C0
|
|
|
|
uint32_t m_task_type; //0x00C4
|
2022-11-27 18:43:23 -05:00
|
|
|
uint32_t m_buffer_size; //0x00C8
|
|
|
|
uint8_t m_task_data_buffer[603]; //0x00CC
|
|
|
|
}; //Size: 0x0328
|
|
|
|
static_assert(sizeof(CPedTaskSpecificDataNode) == 0x328);
|
|
|
|
#pragma pack(pop)
|