Temp-Classes/base/CNavigation.hpp

18 lines
386 B
C++
Raw Normal View History

2022-01-28 07:02:15 +08:00
#pragma once
#include "../rage/vector.hpp"
2022-01-28 07:02:15 +08:00
class CNavigation
{
public:
char pad_0000[32]; //0x0000
2022-06-01 06:07:20 +08:00
rage::fvector3 m_right; //0x0020
char pad_002C[4]; //0x002C
2022-06-01 06:07:20 +08:00
rage::fvector3 m_forward; //0x0030
char pad_003C[4]; //0x003C
2022-06-01 06:07:20 +08:00
rage::fvector3 m_up; //0x0040
char pad_004C[4]; //0x004C
2022-06-01 06:07:20 +08:00
rage::fvector3 m_position; //0x0050
2022-01-28 07:02:15 +08:00
}; //Size: 0x0060
static_assert(sizeof(CNavigation) == 0x5C);