2022-08-13 04:24:30 -04:00
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
2023-02-23 23:11:35 +00:00
|
|
|
#include "netsync/CProjectBaseSyncDataNode.hpp"
|
2022-08-13 04:24:30 -04:00
|
|
|
|
|
|
|
#pragma pack(push, 4)
|
2023-02-23 23:11:35 +00:00
|
|
|
class CPhysicalVelocityDataNode : CSyncDataNodeFrequent
|
2022-08-13 04:24:30 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
int32_t m_velocity_x; //0x00C0 Divide by 16.
|
|
|
|
int32_t m_velocity_y; //0x00C4 Divide by 16.
|
|
|
|
int32_t m_velocity_z; //0x00C8 Divide by 16.
|
|
|
|
}; // 0x00CC
|
|
|
|
static_assert(sizeof(CPhysicalVelocityDataNode) == 0xCC);
|
|
|
|
#pragma pack(pop)
|