summaryrefslogtreecommitdiffstats
path: root/source/cSandSimulator.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cSandSimulator.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/cSandSimulator.h b/source/cSandSimulator.h
index 113a2492b..0a38172e8 100644
--- a/source/cSandSimulator.h
+++ b/source/cSandSimulator.h
@@ -2,8 +2,8 @@
#include "cSimulator.h"
#include "cBlockEntity.h"
#include <list>
+#include "Vector3i.h"
-class Vector3i;
class cWorld;
class cSandSimulator : public cSimulator
{
@@ -20,6 +20,7 @@ public:
protected:
virtual void AddBlock(int a_X, int a_Y, int a_Z);
- std::list <Vector3i *> *m_Blocks;
- std::list <Vector3i *> *m_Buffer;
+ typedef std::list <Vector3i> BlockList;
+ BlockList * m_Blocks;
+ BlockList * m_Buffer;
}; \ No newline at end of file