1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-26 18:37:37 +00:00
re3/src/control/TrafficLights.h

17 lines
221 B
C
Raw Normal View History

2019-06-30 19:06:55 +00:00
#pragma once
class CEntity;
2019-08-08 00:21:38 +00:00
enum {
PED_LIGHTS_WALK,
PED_LIGHTS_WALK_BLINK,
PED_LIGHTS_DONT_WALK,
};
2019-06-30 19:06:55 +00:00
class CTrafficLights
{
public:
static void DisplayActualLight(CEntity *ent);
2019-08-08 00:21:38 +00:00
static uint8 LightForPeds(void);
2019-06-30 19:06:55 +00:00
};