mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
d81f392e61
* feat(Script): Ported BBv2 script classes * fix: Change hard tab indents to 4 width space indents
15 lines
289 B
C++
15 lines
289 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) |