2011-10-03 11:41:19 -07:00
|
|
|
#pragma once
|
2012-01-29 11:28:19 -08:00
|
|
|
|
2011-12-25 08:20:06 -08:00
|
|
|
#include "cFluidSimulator.h"
|
2011-10-03 11:41:19 -07:00
|
|
|
|
2011-12-25 08:20:06 -08:00
|
|
|
class cWaterSimulator : public cFluidSimulator
|
2011-10-03 11:41:19 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cWaterSimulator( cWorld* a_World );
|
|
|
|
|
2012-02-02 04:43:30 -08:00
|
|
|
virtual bool IsAllowedBlock( char a_BlockID );
|
2011-12-23 17:36:15 -08:00
|
|
|
|
2011-10-03 11:41:19 -07:00
|
|
|
};
|