[saco] Implement/match CVehicle::GetPassengersMax()

This commit is contained in:
RD42 2024-08-20 23:22:24 +08:00
parent d9504f067d
commit 855172dab3
2 changed files with 9 additions and 0 deletions

View File

@ -218,5 +218,12 @@ void CVehicle::SetAlarmState(WORD wState)
//-----------------------------------------------------------
UINT CVehicle::GetPassengersMax()
{
return 0;
}
//-----------------------------------------------------------
//-----------------------------------------------------------

View File

@ -44,6 +44,8 @@ public:
BOOL HasTurret();
BOOL HasADriver();
UINT GetPassengersMax();
void SetSirenOn(BYTE byteState);
BOOL IsSirenOn();
void SetAlarmState(WORD wState);