mirror of
https://github.com/halpz/re3.git
synced 2025-01-10 20:45:30 +00:00
15 lines
262 B
C++
15 lines
262 B
C++
#pragma once
|
|
|
|
#include "Ped.h"
|
|
|
|
class CCivilianPed : public CPed
|
|
{
|
|
public:
|
|
CCivilianPed(int, int);
|
|
~CCivilianPed(void) { }
|
|
|
|
void ProcessControl(void);
|
|
bool ProcessNearestFreePhone(int);
|
|
};
|
|
static_assert(sizeof(CCivilianPed) == 0x53C, "CCivilianPed: error");
|