mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-27 19:44:15 +01:00
20 lines
338 B
C++
20 lines
338 B
C++
#pragma once
|
|
|
|
class CEntity;
|
|
class CVehicle;
|
|
|
|
enum {
|
|
PED_LIGHTS_WALK,
|
|
PED_LIGHTS_WALK_BLINK,
|
|
PED_LIGHTS_DONT_WALK,
|
|
};
|
|
|
|
class CTrafficLights
|
|
{
|
|
public:
|
|
static void DisplayActualLight(CEntity *ent);
|
|
static uint8 LightForPeds(void);
|
|
static bool ShouldCarStopForLight(CVehicle*, bool);
|
|
static bool ShouldCarStopForBridge(CVehicle*);
|
|
};
|