diff --git a/saco/game/vehicle.cpp b/saco/game/vehicle.cpp index b9a3dc2..f5f9cf5 100644 --- a/saco/game/vehicle.cpp +++ b/saco/game/vehicle.cpp @@ -218,5 +218,12 @@ void CVehicle::SetAlarmState(WORD wState) //----------------------------------------------------------- +UINT CVehicle::GetPassengersMax() +{ + return 0; +} + +//----------------------------------------------------------- + //----------------------------------------------------------- diff --git a/saco/game/vehicle.h b/saco/game/vehicle.h index 1471787..01464aa 100644 --- a/saco/game/vehicle.h +++ b/saco/game/vehicle.h @@ -44,6 +44,8 @@ public: BOOL HasTurret(); BOOL HasADriver(); + UINT GetPassengersMax(); + void SetSirenOn(BYTE byteState); BOOL IsSirenOn(); void SetAlarmState(WORD wState);