blob: 437f14387bf33c9d1f33cecbe0451dcbce54a29e (
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 );
};
|