summaryrefslogtreecommitdiffstats
path: root/source/SandSimulator.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/SandSimulator.h')
-rw-r--r--source/SandSimulator.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/source/SandSimulator.h b/source/SandSimulator.h
deleted file mode 100644
index ff39d62b2..000000000
--- a/source/SandSimulator.h
+++ /dev/null
@@ -1,39 +0,0 @@
-
-#pragma once
-
-#include "Simulator.h"
-#include "BlockEntity.h"
-#include "Vector3i.h"
-
-
-
-
-
-class cWorld;
-
-
-
-
-
-class cSandSimulator : public cSimulator
-{
-public:
- cSandSimulator( cWorld* a_World );
- ~cSandSimulator();
-
- virtual void Simulate( float a_Dt ) override;
-
- virtual bool IsAllowedBlock( BLOCKTYPE a_BlockType ) override;
- virtual bool IsPassable( BLOCKTYPE a_BlockType );
-
-protected:
- virtual void AddBlock(int a_X, int a_Y, int a_Z) override;
-
- typedef std::list <Vector3i> BlockList;
- BlockList * m_Blocks;
- BlockList * m_Buffer;
-};
-
-
-
-