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