aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/BlockSource.h
diff options
context:
space:
mode:
authorLoki Rautio <lokirautio@gmail.com>2026-03-04 03:56:03 -0600
committerLoki Rautio <lokirautio@gmail.com>2026-03-04 03:56:03 -0600
commit42aec6dac53dffa6afe072560a7e1d4986112538 (patch)
tree0836426857391df1b6a83f6368a183f83ec9b104 /Minecraft.World/BlockSource.h
parentc9d58eeac7c72f0b3038e084667b4d89a6249fce (diff)
parentef9b6fd500dfabd9463267b0dd9e29577eea8a2b (diff)
Merge branch 'main' into pr/win64-world-saves
# Conflicts: # Minecraft.Client/MinecraftServer.cpp # README.md
Diffstat (limited to 'Minecraft.World/BlockSource.h')
-rw-r--r--Minecraft.World/BlockSource.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/Minecraft.World/BlockSource.h b/Minecraft.World/BlockSource.h
new file mode 100644
index 00000000..ec5d5ce8
--- /dev/null
+++ b/Minecraft.World/BlockSource.h
@@ -0,0 +1,36 @@
+#pragma once
+
+#include "LocatableSource.h"
+
+class Tile;
+class Material;
+class TileEntity;
+
+class BlockSource : public LocatableSource
+{
+public:
+ /**
+ * @return The X coordinate for the middle of the block
+ */
+ virtual double getX() = 0;
+
+ /**
+ * @return The Y coordinate for the middle of the block
+ */
+ virtual double getY() = 0;
+
+ /**
+ * @return The Z coordinate for the middle of the block
+ */
+ virtual double getZ() = 0;
+
+ virtual int getBlockX() = 0;
+ virtual int getBlockY() = 0;
+ virtual int getBlockZ() = 0;
+
+ virtual Tile *getType() = 0;
+ virtual int getData() = 0;
+ virtual Material *getMaterial() = 0;
+
+ virtual shared_ptr<TileEntity> getEntity() = 0;
+}; \ No newline at end of file