diff options
Diffstat (limited to 'source/cClientHandle.h')
-rw-r--r-- | source/cClientHandle.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/cClientHandle.h b/source/cClientHandle.h index 0dc0c2fd9..9c8586ae5 100644 --- a/source/cClientHandle.h +++ b/source/cClientHandle.h @@ -114,6 +114,9 @@ public: void SendSpawnMob (const cMonster & a_Mob); 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 SendCollectPickup(const cPickup & a_Pickup, const cPlayer & a_Player); + void SendBlockChange(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); + void SendBlockChanges(int a_ChunkX, int a_ChunkZ, const sSetBlockVector & a_Changes); + void SendUnloadChunk(int a_ChunkX, int a_ChunkZ); const AString & GetUsername(void) const; //tolua_export |