2022-01-28 00:02:15 +01:00
|
|
|
#pragma once
|
2022-06-01 07:49:36 +02:00
|
|
|
|
2022-08-25 22:06:34 +02:00
|
|
|
#include "../rage/vector.hpp"
|
2022-10-30 21:32:30 +08:00
|
|
|
#include "phArchetypeDamp.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
|
2022-06-01 00:07:20 +02:00
|
|
|
rage::fvector3 m_right; //0x0020
|
2022-05-27 03:00:28 +02:00
|
|
|
char pad_002C[4]; //0x002C
|
2022-06-01 00:07:20 +02:00
|
|
|
rage::fvector3 m_forward; //0x0030
|
2022-05-27 03:00:28 +02:00
|
|
|
char pad_003C[4]; //0x003C
|
2022-06-01 00:07:20 +02:00
|
|
|
rage::fvector3 m_up; //0x0040
|
2022-05-27 03:00:28 +02:00
|
|
|
char pad_004C[4]; //0x004C
|
2022-06-01 00:07:20 +02:00
|
|
|
rage::fvector3 m_position; //0x0050
|
2022-01-28 00:02:15 +01:00
|
|
|
}; //Size: 0x0060
|
2022-01-28 02:25:13 +01:00
|
|
|
static_assert(sizeof(CNavigation) == 0x5C);
|
2022-10-30 21:32:30 +08:00
|
|
|
#pragma pack(pop)
|