2022-01-28 00:02:15 +01:00
|
|
|
#pragma once
|
2022-01-28 01:15:26 +01:00
|
|
|
#include "vector.hpp"
|
2022-01-28 00:02:15 +01:00
|
|
|
|
|
|
|
class CNavigation
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
char pad_0000[32]; //0x0000
|
|
|
|
float m_heading; //0x0020
|
|
|
|
float m_heading2; //0x0024
|
|
|
|
char pad_0028[8]; //0x0028
|
2022-01-28 01:15:26 +01:00
|
|
|
rage::fvector3 m_rotation; //0x0030
|
2022-01-28 02:25:13 +01:00
|
|
|
char pad_003C[20]; //0x003C
|
2022-01-28 01:15:26 +01:00
|
|
|
rage::fvector3 m_position; //0x0054
|
2022-01-28 00:02:15 +01:00
|
|
|
}; //Size: 0x0060
|
2022-01-28 02:25:13 +01:00
|
|
|
static_assert(sizeof(CNavigation) == 0x5C);
|