mirror of
https://github.com/td512/re3.git
synced 2026-01-21 22:14:42 +00:00
11 lines
146 B
C++
11 lines
146 B
C++
#pragma once
|
|
|
|
class CVehicle;
|
|
|
|
class CCarAI
|
|
{
|
|
public:
|
|
static void UpdateCarAI(CVehicle*);
|
|
static void MakeWayForCarWithSiren(CVehicle *veh);
|
|
};
|