summaryrefslogtreecommitdiffstats
path: root/source/cWaterSimulator.h
blob: c4eab8d800bbfa1a547c32b4d4a18c864bb89ba1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include "cFluidSimulator.h"

class cWaterSimulator : public cFluidSimulator
{
public:
	cWaterSimulator( cWorld* a_World );

	virtual inline bool IsAllowedBlock( char a_BlockID );
	virtual inline bool IsPassableForFluid( char a_BlockID );

};