GTAV-Classes/base/CNavigation.hpp

17 lines
348 B
C++
Raw Normal View History

2022-01-28 00:02:15 +01:00
#pragma once
#include "../rage/vector.hpp"
#include "phArchetype.hpp"
2022-01-28 00:02:15 +01:00
2022-10-30 21:32:30 +08:00
#pragma pack(push, 1)
2022-01-28 00:02:15 +01:00
class CNavigation
{
public:
2022-10-30 21:32:30 +08:00
char pad_0000[16]; //0x0000
class rage::phArchetypeDamp* m_damp; //0x0010
char pad_0018[8]; //0x0018
rage::fmatrix44 m_transformation_matrix;
2022-01-28 00:02:15 +01:00
}; //Size: 0x0060
static_assert(sizeof(CNavigation) == 0x60);
2022-10-30 21:32:30 +08:00
#pragma pack(pop)