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