summaryrefslogblamecommitdiffstats
path: root/src/Simulator/NoopFluidSimulator.h
blob: 1b963f5692d0391db59b715415f92cb0a02a733d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                                                                     
                          

                              
                                      
 
       
 
                           

        
 
                                                                   
                                                                                                
         
                                

                                
                                                                                        




   

// 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
{
	using Super = cFluidSimulator;

public:

	using Super::Super;

private:

	virtual void Simulate(float a_Dt) override { UNUSED(a_Dt);}
	virtual void AddBlock(cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_Block) override
	{
		UNUSED(a_Block);
		UNUSED(a_Chunk);
	}
	virtual cFluidSimulatorData * CreateChunkData(void) override { return nullptr; }
} ;