mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-06 01:23:36 +08:00
9 lines
210 B
C++
9 lines
210 B
C++
|
#pragma once
|
||
|
|
||
|
class CPedScriptCreationDataNode
|
||
|
{
|
||
|
public:
|
||
|
char pad_0x0[192]; //0x0000
|
||
|
bool m_stay_in_car_when_jacked; //0x00C0
|
||
|
}; //Size: 0x00C1
|
||
|
static_assert(sizeof(CPedScriptCreationDataNode) == 0xC1);
|