summaryrefslogtreecommitdiffstats
path: root/src/ChunkDef.h
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2014-01-12 13:38:41 +0100
committerAlexander Harkness <bearbin@gmail.com>2014-01-12 13:38:41 +0100
commit273db55bdfe789e18601417931dd89bd6cd94b83 (patch)
tree537a559bcd7f18e0aad2b853f223f06404309ee7 /src/ChunkDef.h
parentMerge pull request #533 from mc-server/CmakeMultiConfig (diff)
parentFixed rails powering (diff)
downloadcuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.gz
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.bz2
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.lz
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.xz
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.zst
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.zip
Diffstat (limited to 'src/ChunkDef.h')
-rw-r--r--src/ChunkDef.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ChunkDef.h b/src/ChunkDef.h
index edeb7c0a0..d1288994c 100644
--- a/src/ChunkDef.h
+++ b/src/ChunkDef.h
@@ -520,8 +520,10 @@ public:
// Illegal in C++03: typedef std::list< cCoordWithData<X> > cCoordWithDataList<X>;
typedef cCoordWithData<int> cCoordWithInt;
+typedef cCoordWithData<BLOCKTYPE> cCoordWithBlock;
typedef std::list<cCoordWithInt> cCoordWithIntList;
typedef std::vector<cCoordWithInt> cCoordWithIntVector;
+typedef std::vector<cCoordWithBlock> cCoordWithBlockVector;