summaryrefslogtreecommitdiffstats
path: root/src/ClientHandle.cpp
diff options
context:
space:
mode:
authorandrew <xdotftw@gmail.com>2014-02-13 16:13:09 +0100
committerandrew <xdotftw@gmail.com>2014-02-13 16:13:09 +0100
commit92e85cc96030285bba74837759925866c1be7235 (patch)
treeaf478bb840eefb7164860cddee745acf5e598bd9 /src/ClientHandle.cpp
parentUpdated COMPILING instructions for out-of-source build. (diff)
downloadcuberite-92e85cc96030285bba74837759925866c1be7235.tar
cuberite-92e85cc96030285bba74837759925866c1be7235.tar.gz
cuberite-92e85cc96030285bba74837759925866c1be7235.tar.bz2
cuberite-92e85cc96030285bba74837759925866c1be7235.tar.lz
cuberite-92e85cc96030285bba74837759925866c1be7235.tar.xz
cuberite-92e85cc96030285bba74837759925866c1be7235.tar.zst
cuberite-92e85cc96030285bba74837759925866c1be7235.zip
Diffstat (limited to 'src/ClientHandle.cpp')
-rw-r--r--src/ClientHandle.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp
index 1b3ebc3d4..8e44a61fd 100644
--- a/src/ClientHandle.cpp
+++ b/src/ClientHandle.cpp
@@ -2057,6 +2057,24 @@ void cClientHandle::SendInventorySlot(char a_WindowID, short a_SlotNum, const cI
+void cClientHandle::SendMapColumn(int a_ID, int a_X, int a_Y, const Byte * a_Colors, unsigned int a_Length)
+{
+ m_Protocol->SendMapColumn(a_ID, a_X, a_Y, a_Colors, a_Length);
+}
+
+
+
+
+
+void cClientHandle::SendMapInfo(int a_ID, unsigned int a_Scale)
+{
+ m_Protocol->SendMapInfo(a_ID, a_Scale);
+}
+
+
+
+
+
void cClientHandle::SendParticleEffect(const AString & a_ParticleName, float a_SrcX, float a_SrcY, float a_SrcZ, float a_OffsetX, float a_OffsetY, float a_OffsetZ, float a_ParticleData, int a_ParticleAmmount)
{
m_Protocol->SendParticleEffect(a_ParticleName, a_SrcX, a_SrcY, a_SrcZ, a_OffsetX, a_OffsetY, a_OffsetZ, a_ParticleData, a_ParticleAmmount);