summaryrefslogtreecommitdiffstats
path: root/source/cWaterSimulator.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cWaterSimulator.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/source/cWaterSimulator.h b/source/cWaterSimulator.h
new file mode 100644
index 000000000..1e45256f8
--- /dev/null
+++ b/source/cWaterSimulator.h
@@ -0,0 +1,25 @@
+#pragma once
+
+class Vector3i;
+class cWorld;
+class cWaterSimulator
+{
+public:
+ cWaterSimulator( cWorld* a_World );
+ ~cWaterSimulator();
+
+ void Simulate( float a_Dt );
+ void WakeUp( int a_X, int a_Y, int a_Z );
+
+private:
+ void AddBlock( int a_X, int a_Y, int a_Z);
+ char GetHighestLevelAround( int a_X, int a_Y, int a_Z );
+
+ bool IsWaterBlock( char a_BlockID );
+
+ float m_Timer;
+ cWorld* m_World;
+
+ class WaterData;
+ WaterData* m_Data;
+}; \ No newline at end of file