diff options
Diffstat (limited to 'src/Simulator/VanillaFluidSimulator.h')
-rw-r--r-- | src/Simulator/VanillaFluidSimulator.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/Simulator/VanillaFluidSimulator.h b/src/Simulator/VanillaFluidSimulator.h index 1e47c3ddf..96ce8dc70 100644 --- a/src/Simulator/VanillaFluidSimulator.h +++ b/src/Simulator/VanillaFluidSimulator.h @@ -13,13 +13,21 @@ -class cVanillaFluidSimulator : +class cVanillaFluidSimulator: public cFloodyFluidSimulator { - typedef cFloodyFluidSimulator super; + using Super = cFloodyFluidSimulator; public: - cVanillaFluidSimulator(cWorld & a_World, BLOCKTYPE a_Fluid, BLOCKTYPE a_StationaryFluid, NIBBLETYPE a_Falloff, int a_TickDelay, int a_NumNeighborsForSource); + + cVanillaFluidSimulator( + cWorld & a_World, + BLOCKTYPE a_Fluid, + BLOCKTYPE a_StationaryFluid, + NIBBLETYPE a_Falloff, + int a_TickDelay, + int a_NumNeighborsForSource + ); protected: // cFloodyFluidSimulator overrides: |