mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 22:18:59 +00:00
11 lines
178 B
C++
11 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");
|