mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 00:49:00 +00:00
19 lines
338 B
C++
19 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*);
|
|
};
|