more CCarCtrl

This commit is contained in:
Nikolay Korolev
2019-08-11 20:11:54 +03:00
parent 6a7fdadeaa
commit 14b945ba08
21 changed files with 433 additions and 51 deletions

View File

@ -1,6 +1,7 @@
#pragma once
class CEntity;
class CVehicle;
enum {
PED_LIGHTS_WALK,
@ -13,4 +14,6 @@ class CTrafficLights
public:
static void DisplayActualLight(CEntity *ent);
static uint8 LightForPeds(void);
static bool ShouldCarStopForLight(CVehicle*, bool);
static bool ShouldCarStopForBridge(CVehicle*);
};