Re3/src/control/TrafficLights.h

20 lines
338 B
C
Raw Normal View History

2019-06-30 15:06:55 -04:00
#pragma once
class CEntity;
2019-08-11 13:11:54 -04:00
class CVehicle;
2019-06-30 15:06:55 -04:00
2019-08-07 20:21:38 -04:00
enum {
PED_LIGHTS_WALK,
PED_LIGHTS_WALK_BLINK,
PED_LIGHTS_DONT_WALK,
};
2019-06-30 15:06:55 -04:00
class CTrafficLights
{
public:
static void DisplayActualLight(CEntity *ent);
2019-08-07 20:21:38 -04:00
static uint8 LightForPeds(void);
2019-08-11 13:11:54 -04:00
static bool ShouldCarStopForLight(CVehicle*, bool);
static bool ShouldCarStopForBridge(CVehicle*);
2019-06-30 15:06:55 -04:00
};