diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-01-10 21:31:05 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-01-10 21:31:05 +0100 |
commit | e7fba08e6cbba1801dd45ad4c14ea743b7743e84 (patch) | |
tree | 131d299d3925a1b98b540b40b28d20eae970d4b5 /src/ChunkDef.h | |
parent | Added a known working favicon. (diff) | |
download | cuberite-e7fba08e6cbba1801dd45ad4c14ea743b7743e84.tar cuberite-e7fba08e6cbba1801dd45ad4c14ea743b7743e84.tar.gz cuberite-e7fba08e6cbba1801dd45ad4c14ea743b7743e84.tar.bz2 cuberite-e7fba08e6cbba1801dd45ad4c14ea743b7743e84.tar.lz cuberite-e7fba08e6cbba1801dd45ad4c14ea743b7743e84.tar.xz cuberite-e7fba08e6cbba1801dd45ad4c14ea743b7743e84.tar.zst cuberite-e7fba08e6cbba1801dd45ad4c14ea743b7743e84.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ChunkDef.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ChunkDef.h b/src/ChunkDef.h index 7d727a4d4..3df575732 100644 --- a/src/ChunkDef.h +++ b/src/ChunkDef.h @@ -610,8 +610,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; |