summaryrefslogtreecommitdiffstats
path: root/tests/SchematicFileSerializer/Stubs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/SchematicFileSerializer/Stubs.cpp')
-rw-r--r--tests/SchematicFileSerializer/Stubs.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/SchematicFileSerializer/Stubs.cpp b/tests/SchematicFileSerializer/Stubs.cpp
index 7261d7a14..683b6d18e 100644
--- a/tests/SchematicFileSerializer/Stubs.cpp
+++ b/tests/SchematicFileSerializer/Stubs.cpp
@@ -34,6 +34,11 @@ cBlockInfo::cBlockInfoArray::cBlockInfoArray()
}
+cBoundingBox::cBoundingBox(double, double, double, double, double, double)
+{
+}
+
+
@@ -45,6 +50,15 @@ cBlockHandler::cBlockHandler(BLOCKTYPE a_BlockType)
+cBoundingBox cBlockHandler::GetPlacementCollisionBox(BLOCKTYPE a_XM, BLOCKTYPE a_XP, BLOCKTYPE a_YM, BLOCKTYPE a_YP, BLOCKTYPE a_ZM, BLOCKTYPE a_ZP)
+{
+ return cBoundingBox(0, 0, 0, 0, 0, 0);
+}
+
+
+
+
+
bool cBlockHandler::GetPlacementBlockTypeMeta(
cChunkInterface & a_ChunkInterface, cPlayer * a_Player,
int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace,