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

This commit is contained in:
RD42 2024-08-20 23:23:40 +08:00
parent 3533e7a114
commit 6669d58ffd
2 changed files with 10 additions and 0 deletions

View File

@ -232,5 +232,13 @@ void CVehicle::SetHydraThrusters(DWORD dwDirection)
//-----------------------------------------------------------
DWORD CVehicle::GetHydraThrusters()
{
if(m_pVehicle) return m_pVehicle->dwHydraThrusters;
return 0UL;
}
//-----------------------------------------------------------
//-----------------------------------------------------------

View File

@ -45,6 +45,8 @@ public:
BOOL HasADriver();
void SetHydraThrusters(DWORD dwDirection);
DWORD GetHydraThrusters();
UINT GetPassengersMax();