2011-10-03 18:41:19 +00:00
|
|
|
#pragma once
|
2011-12-25 16:20:06 +00:00
|
|
|
#include "cFluidSimulator.h"
|
2011-10-03 18:41:19 +00:00
|
|
|
|
2011-12-25 16:20:06 +00:00
|
|
|
class cWaterSimulator : public cFluidSimulator
|
2011-10-03 18:41:19 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cWaterSimulator( cWorld* a_World );
|
|
|
|
|
2011-12-25 16:20:06 +00:00
|
|
|
virtual inline bool IsAllowedBlock( char a_BlockID );
|
|
|
|
virtual inline bool IsPassableForFluid( char a_BlockID );
|
2011-12-24 01:36:15 +00:00
|
|
|
|
2011-10-03 18:41:19 +00:00
|
|
|
};
|