blob: e1c345672e850d2e8d0a0629a8ab6c57693c9969 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// VaporizeFluidSimulator.h
// Declares the cVaporizeFluidSimulator class representing a fluid simulator that replaces all fluid blocks with air
// Useful for water simulation in the Nether
#pragma once
#include "FluidSimulator.h"
class cVaporizeFluidSimulator :
public cFluidSimulator
{
typedef cFluidSimulator super;
public:
cVaporizeFluidSimulator(cWorld & a_World, BLOCKTYPE a_Fluid, BLOCKTYPE a_StationaryFluid);
// cSimulator /*override*/s:
virtual void AddBlock(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk) /*override*/;
virtual void Simulate(float a_Dt) /*override*/;
} ;
|