diff options
author | aap <aap@papnet.eu> | 2019-07-24 23:06:48 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-07-24 23:06:48 +0200 |
commit | 93d55bd029b62224a0690bc06bf5d9d6126e59ce (patch) | |
tree | 562f096661118d2f1a6f688eb7d18c20d4746f66 /src/vehicles/Floater.h | |
parent | implemented cBuoyancy (diff) | |
download | re3-93d55bd029b62224a0690bc06bf5d9d6126e59ce.tar re3-93d55bd029b62224a0690bc06bf5d9d6126e59ce.tar.gz re3-93d55bd029b62224a0690bc06bf5d9d6126e59ce.tar.bz2 re3-93d55bd029b62224a0690bc06bf5d9d6126e59ce.tar.lz re3-93d55bd029b62224a0690bc06bf5d9d6126e59ce.tar.xz re3-93d55bd029b62224a0690bc06bf5d9d6126e59ce.tar.zst re3-93d55bd029b62224a0690bc06bf5d9d6126e59ce.zip |
Diffstat (limited to 'src/vehicles/Floater.h')
-rw-r--r-- | src/vehicles/Floater.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vehicles/Floater.h b/src/vehicles/Floater.h index ede2b9d0..0a2ae809 100644 --- a/src/vehicles/Floater.h +++ b/src/vehicles/Floater.h @@ -1,6 +1,6 @@ #pragma once -class Physical; +class CPhysical; enum tWaterLevel { @@ -33,7 +33,7 @@ public: char m_field_B9; bool m_isBoat; float m_volumeUnderWater; - CVector m_impulse; + CVector m_impulsePoint; bool ProcessBuoyancy(CPhysical *phys, float buoyancy, CVector *impulse, CVector *point); void PreCalcSetup(CPhysical *phys, float buoyancy); |