summaryrefslogtreecommitdiffstats
path: root/src/Blocks/WorldInterface.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-06-18 18:23:18 +0200
committerMattes D <github@xoft.cz>2014-06-18 18:23:18 +0200
commitc30b7b87354cd7868dd986008ac91187390a08b2 (patch)
tree5f7222853d649ca5e66a2640462b4468be6fd79e /src/Blocks/WorldInterface.h
parentMerge pull request #1100 from Howaner/Slabs (diff)
parentMerge branch 'master' into GlobalFixes (diff)
downloadcuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar
cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar.gz
cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar.bz2
cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar.lz
cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar.xz
cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar.zst
cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.zip
Diffstat (limited to 'src/Blocks/WorldInterface.h')
-rw-r--r--src/Blocks/WorldInterface.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Blocks/WorldInterface.h b/src/Blocks/WorldInterface.h
index bfbb053d9..650a216c0 100644
--- a/src/Blocks/WorldInterface.h
+++ b/src/Blocks/WorldInterface.h
@@ -6,6 +6,12 @@
class cItems;
+typedef cItemCallback<cBlockEntity> cBlockEntityCallback;
+
+
+
+
+
class cWorldInterface
{
public:
@@ -29,6 +35,9 @@ public:
/** Spawns a mob of the specified type. Returns the mob's EntityID if recognized and spawned, <0 otherwise */
virtual int SpawnMob(double a_PosX, double a_PosY, double a_PosZ, cMonster::eType a_MonsterType) = 0;
+ /** Calls the callback for the block entity at the specified coords; returns false if there's no block entity at those coords, true if found */
+ virtual bool DoWithBlockEntityAt(int a_BlockX, int a_BlockY, int a_BlockZ, cBlockEntityCallback & a_Callback) = 0;
+
/** Sends the block on those coords to the player */
virtual void SendBlockTo(int a_BlockX, int a_BlockY, int a_BlockZ, cPlayer * a_Player) = 0;