diff options
author | andrew <xdotftw@gmail.com> | 2014-02-13 16:13:09 +0100 |
---|---|---|
committer | andrew <xdotftw@gmail.com> | 2014-02-13 16:13:09 +0100 |
commit | 92e85cc96030285bba74837759925866c1be7235 (patch) | |
tree | af478bb840eefb7164860cddee745acf5e598bd9 /src/ClientHandle.cpp | |
parent | Updated COMPILING instructions for out-of-source build. (diff) | |
download | cuberite-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 '')
-rw-r--r-- | src/ClientHandle.cpp | 18 |
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); |