diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-07-30 22:19:51 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-07-30 22:19:51 +0200 |
commit | 81e095adda62e4067ab4c07b0e4c7ce0f3dbce39 (patch) | |
tree | 09687befe7c3a3e9b6eb6abf97455743c254d0c0 /src/ChunkMap.h | |
parent | Added beacon. (diff) | |
download | cuberite-81e095adda62e4067ab4c07b0e4c7ce0f3dbce39.tar cuberite-81e095adda62e4067ab4c07b0e4c7ce0f3dbce39.tar.gz cuberite-81e095adda62e4067ab4c07b0e4c7ce0f3dbce39.tar.bz2 cuberite-81e095adda62e4067ab4c07b0e4c7ce0f3dbce39.tar.lz cuberite-81e095adda62e4067ab4c07b0e4c7ce0f3dbce39.tar.xz cuberite-81e095adda62e4067ab4c07b0e4c7ce0f3dbce39.tar.zst cuberite-81e095adda62e4067ab4c07b0e4c7ce0f3dbce39.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ChunkMap.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ChunkMap.h b/src/ChunkMap.h index e33d9f894..1e9a0f982 100644 --- a/src/ChunkMap.h +++ b/src/ChunkMap.h @@ -19,6 +19,7 @@ class MTRand; class cChunkStay; class cChunk; class cPlayer; +class cBeaconEntity; class cChestEntity; class cDispenserEntity; class cDropperEntity; @@ -40,6 +41,7 @@ typedef std::list<cClientHandle *> cClientHandleList; typedef cChunk * cChunkPtr; typedef cItemCallback<cEntity> cEntityCallback; typedef cItemCallback<cBlockEntity> cBlockEntityCallback; +typedef cItemCallback<cBeaconEntity> cBeaconCallback; typedef cItemCallback<cChestEntity> cChestCallback; typedef cItemCallback<cDispenserEntity> cDispenserCallback; typedef cItemCallback<cDropperEntity> cDropperCallback; @@ -234,6 +236,9 @@ public: /** 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 */ bool DoWithBlockEntityAt(int a_BlockX, int a_BlockY, int a_BlockZ, cBlockEntityCallback & a_Callback); // Lua-acessible + /** Calls the callback for the beacon at the specified coords; returns false if there's no beacon at those coords, true if found */ + bool DoWithBeaconAt(int a_BlockX, int a_BlockY, int a_BlockZ, cBeaconCallback & a_Callback); // Lua-acessible + /** Calls the callback for the chest at the specified coords; returns false if there's no chest at those coords, true if found */ bool DoWithChestAt(int a_BlockX, int a_BlockY, int a_BlockZ, cChestCallback & a_Callback); // Lua-acessible |