mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
14 lines
329 B
C++
14 lines
329 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include "netsync/CProjectBaseSyncDataNode.hpp"
|
|
|
|
#pragma pack(push, 4)
|
|
class CVehicleSteeringNodeData : CSyncDataNodeFrequent
|
|
{
|
|
public:
|
|
float m_steering_handle; // 0xC0
|
|
char pad[4]; // 0xC4
|
|
}; //Size: 0x00C8
|
|
#pragma pack(pop)
|
|
static_assert(sizeof(CVehicleSteeringNodeData) == 0xC8);
|