blob: 9113aec3c1df9e6bf5584a9cf5fc45746d0ca5ba (
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
35
36
37
38
39
40
41
42
|
// NoopFluidSimulator.h
// Declares the cNoopFluidSimulator class representing a fluid simulator that performs nothing, it ignores all blocks
#pragma once
#include "FluidSimulator.h"
class cNoopFluidSimulator :
public cFluidSimulator
{
typedef cFluidSimulator super;
public:
cNoopFluidSimulator(cWorld & a_World, BLOCKTYPE a_Fluid, BLOCKTYPE a_StationaryFluid) :
super(a_World, a_Fluid, a_StationaryFluid)
{
}
// cSimulator overrides:
virtual void AddBlock(int a_BlockX, int a_BlockY, int a_BlockZ, cChunk * a_Chunk) override
{
UNUSED(a_BlockX);
UNUSED(a_BlockY);
UNUSED(a_BlockZ);
UNUSED(a_Chunk);
}
virtual void Simulate(float a_Dt) override { UNUSED(a_Dt);}
} ;
|