mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
15 lines
274 B
C++
15 lines
274 B
C++
|
#pragma once
|
||
|
|
||
|
class CPed; //fwdec
|
||
|
|
||
|
#pragma pack(push, 1)
|
||
|
class CAttackers
|
||
|
{
|
||
|
public:
|
||
|
CPed* m_attacker0; //0x0000
|
||
|
char pad_0x0008[0x10]; //0x0008
|
||
|
CPed* m_attacker1; //0x0018
|
||
|
char pad_0x0020[0x10]; //0x0020
|
||
|
CPed* m_attacker2; //0x0030
|
||
|
}; //Size=0x0038
|
||
|
#pragma pack(pop)
|