1
0
mirror of https://github.com/td512/re3.git synced 2026-01-21 22:14:42 +00:00
2019-07-18 15:41:09 +02:00

11 lines
146 B
C++

#pragma once
class CVehicle;
class CCarAI
{
public:
static void UpdateCarAI(CVehicle*);
static void MakeWayForCarWithSiren(CVehicle *veh);
};