Temp-Classes/netsync/nodes/physical/CPhysicalVelocityDataNode.hpp

14 lines
404 B
C++
Raw Permalink Normal View History

#pragma once
#include <cstdint>
2023-02-23 23:11:35 +00:00
#include "netsync/CProjectBaseSyncDataNode.hpp"
#pragma pack(push, 4)
2023-02-23 23:11:35 +00:00
class CPhysicalVelocityDataNode : CSyncDataNodeFrequent
{
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)