mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 06:38:58 +00:00
10 lines
161 B
C++
10 lines
161 B
C++
#pragma once
|
|
|
|
class CVehicle;
|
|
|
|
class CCarCtrl
|
|
{
|
|
public:
|
|
static void SwitchVehicleToRealPhysics(CVehicle*);
|
|
static void AddToCarArray(int id, int vehclass);
|
|
};
|