mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
feat(DataNodes): added CPedOrientationDataNode (#95)
This commit is contained in:
parent
897f3daa5c
commit
9ac0a7cb8b
14
datanodes/ped/CPedOrientationDataNode.hpp
Normal file
14
datanodes/ped/CPedOrientationDataNode.hpp
Normal file
@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#pragma pack(push, 4)
|
||||
class CPedOrientationDataNode
|
||||
{
|
||||
public:
|
||||
char gap0[192];//0x0000
|
||||
bool m_has_desired_heading_x;//0x00C1
|
||||
bool m_has_desired_heading_y;//0x00C2
|
||||
float m_desired_heading_x;//0x000C4
|
||||
float m_desired_heading_y;//0x000C8
|
||||
};
|
||||
static_assert(sizeof(CPedOrientationDataNode) == 0xCC);
|
||||
#pragma pack(pop)
|
Loading…
Reference in New Issue
Block a user