mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
15 lines
317 B
C++
15 lines
317 B
C++
#pragma once
|
|
|
|
class CNavigation
|
|
{
|
|
public:
|
|
char pad_0000[32]; //0x0000
|
|
float m_heading; //0x0020
|
|
float m_heading2; //0x0024
|
|
char pad_0028[8]; //0x0028
|
|
rage::vector3 m_rotation; //0x0030
|
|
char pad_003C[24]; //0x003C
|
|
rage::vector3 m_position; //0x0054
|
|
}; //Size: 0x0060
|
|
static_assert(sizeof(CNavigation) == 0x60);
|