mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 07:39:00 +00:00
12 lines
178 B
C
12 lines
178 B
C
|
#pragma once
|
||
|
|
||
|
#include "Ped.h"
|
||
|
|
||
|
class CEmergencyPed : public CPed
|
||
|
{
|
||
|
public:
|
||
|
// 0x53C
|
||
|
uint8 stuff[24];
|
||
|
};
|
||
|
static_assert(sizeof(CEmergencyPed) == 0x554, "CEmergencyPed: error");
|