mirror of
https://github.com/halpz/re3.git
synced 2025-02-03 08:20:59 +00:00
17 lines
221 B
C++
17 lines
221 B
C++
#pragma once
|
|
|
|
class CEntity;
|
|
|
|
enum {
|
|
PED_LIGHTS_WALK,
|
|
PED_LIGHTS_WALK_BLINK,
|
|
PED_LIGHTS_DONT_WALK,
|
|
};
|
|
|
|
class CTrafficLights
|
|
{
|
|
public:
|
|
static void DisplayActualLight(CEntity *ent);
|
|
static uint8 LightForPeds(void);
|
|
};
|