diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-01-19 01:54:38 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-01-19 01:54:38 +0100 |
commit | f8c8dcc7f36366dc6b59e6741d466e739322d5d1 (patch) | |
tree | 0462f2482c311fc4d3afbf39ef5858eccb1706d8 /src/ClientHandle.h | |
parent | Merge pull request #557 from xdot/master (diff) | |
download | cuberite-f8c8dcc7f36366dc6b59e6741d466e739322d5d1.tar cuberite-f8c8dcc7f36366dc6b59e6741d466e739322d5d1.tar.gz cuberite-f8c8dcc7f36366dc6b59e6741d466e739322d5d1.tar.bz2 cuberite-f8c8dcc7f36366dc6b59e6741d466e739322d5d1.tar.lz cuberite-f8c8dcc7f36366dc6b59e6741d466e739322d5d1.tar.xz cuberite-f8c8dcc7f36366dc6b59e6741d466e739322d5d1.tar.zst cuberite-f8c8dcc7f36366dc6b59e6741d466e739322d5d1.zip |
Diffstat (limited to 'src/ClientHandle.h')
-rw-r--r-- | src/ClientHandle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ClientHandle.h b/src/ClientHandle.h index 373ca9e2e..2ac240b17 100644 --- a/src/ClientHandle.h +++ b/src/ClientHandle.h @@ -16,6 +16,7 @@ #include "OSSupport/SocketThreads.h" #include "ChunkDef.h" #include "ByteBuffer.h" +#include "WorldStorage/FastNBT.h" @@ -136,6 +137,7 @@ public: void SendThunderbolt (int a_BlockX, int a_BlockY, int a_BlockZ); void SendTimeUpdate (Int64 a_WorldAge, Int64 a_TimeOfDay); void SendUnloadChunk (int a_ChunkX, int a_ChunkZ); + void SendUpdateBlockEntity (int a_BlockX, int a_BlockY, int a_BlockZ, Byte a_Action, cFastNBTWriter & a_NBT); void SendUpdateSign (int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4); void SendUseBed (const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ ); void SendWeather (eWeather a_Weather); |