mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
feat(DataNodes): added CPedMovementDataNode (#92)
This commit is contained in:
parent
7802d1eeb9
commit
897f3daa5c
16
datanodes/ped/CPedMovementDataNode.hpp
Normal file
16
datanodes/ped/CPedMovementDataNode.hpp
Normal file
@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
#pragma pack(push,4)
|
||||
class CPedMovementDataNode
|
||||
{
|
||||
public:
|
||||
char pad_0000[192]; //0x0000
|
||||
bool m_has_desired_move_blend_ratio_x; //0x00C0
|
||||
bool m_has_desired_move_blend_ratio_y; //0x00C1
|
||||
bool unk_00C2; //0x00C2
|
||||
float m_desired_move_blend_ratio_x; //0x00C4
|
||||
float m_desired_move_blend_ratio_y; //0x00C8
|
||||
float unk_00CC; //0x00CC
|
||||
float m_desired_pitch; //0x00D0
|
||||
}; //Size: 0x00D4
|
||||
static_assert(sizeof(CPedMovementDataNode) == 0xD4);
|
||||
#pragma pack(pop)
|
Loading…
Reference in New Issue
Block a user