2012-06-14 13:06:06 +00:00
|
|
|
#include "Globals.h"
|
2012-09-23 22:09:57 +00:00
|
|
|
#include "WaterSimulator.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
#include "Defines.h"
|
2012-09-23 22:09:57 +00:00
|
|
|
#include "World.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cWaterSimulator::cWaterSimulator(cWorld *a_World)
|
|
|
|
: cFluidSimulator(a_World)
|
|
|
|
{
|
|
|
|
m_FluidBlock = E_BLOCK_WATER;
|
|
|
|
m_StationaryFluidBlock = E_BLOCK_STATIONARY_WATER;
|
|
|
|
m_MaxHeight = 7;
|
|
|
|
m_FlowReduction = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool cWaterSimulator::IsAllowedBlock(char a_BlockID)
|
|
|
|
{
|
|
|
|
return IsBlockWater(a_BlockID);
|
|
|
|
}
|
|
|
|
|