diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-01-19 14:25:35 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-01-19 14:25:35 +0100 |
commit | 1af89a8b50a382ef0f5c137a84ab2816c45cc73c (patch) | |
tree | 710e4ef25d4785515a3ca07a94dc4b516dd15286 /src/Protocol/Protocol.h | |
parent | Implemented MC|Brand response (diff) | |
download | cuberite-1af89a8b50a382ef0f5c137a84ab2816c45cc73c.tar cuberite-1af89a8b50a382ef0f5c137a84ab2816c45cc73c.tar.gz cuberite-1af89a8b50a382ef0f5c137a84ab2816c45cc73c.tar.bz2 cuberite-1af89a8b50a382ef0f5c137a84ab2816c45cc73c.tar.lz cuberite-1af89a8b50a382ef0f5c137a84ab2816c45cc73c.tar.xz cuberite-1af89a8b50a382ef0f5c137a84ab2816c45cc73c.tar.zst cuberite-1af89a8b50a382ef0f5c137a84ab2816c45cc73c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Protocol/Protocol.h b/src/Protocol/Protocol.h index 6af0af25d..ac925e382 100644 --- a/src/Protocol/Protocol.h +++ b/src/Protocol/Protocol.h @@ -12,7 +12,6 @@ #include "../Defines.h" #include "../Endianness.h" -#include "../WorldStorage/FastNBT.h" @@ -104,7 +103,7 @@ public: virtual void SendThunderbolt (int a_BlockX, int a_BlockY, int a_BlockZ) = 0; virtual void SendTimeUpdate (Int64 a_WorldAge, Int64 a_TimeOfDay) = 0; virtual void SendUnloadChunk (int a_ChunkX, int a_ChunkZ) = 0; - virtual void SendUpdateBlockEntity (int a_BlockX, int a_BlockY, int a_BlockZ, Byte a_Action, cFastNBTWriter & a_NBT) = 0; + virtual void SendUpdateBlockEntity (int a_BlockX, int a_BlockY, int a_BlockZ, Byte a_Action, cBlockEntity & a_BlockEntity) = 0; virtual 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) = 0; virtual void SendUseBed (const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ ) = 0; virtual void SendWeather (eWeather a_Weather) = 0; |