summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Protocol_1_10.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-12-15 20:21:43 +0100
committerMattes D <github@xoft.cz>2016-12-16 00:07:22 +0100
commit0e3b3be7662f03b7487408f70548eaca1188da3d (patch)
tree3751d17812c46e5847684d8f968f24c4a4e268d2 /src/Protocol/Protocol_1_10.h
parentAPIDump: Load the official undocumented from alternate location. (diff)
downloadcuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar.gz
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar.bz2
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar.lz
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar.xz
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.tar.zst
cuberite-0e3b3be7662f03b7487408f70548eaca1188da3d.zip
Diffstat (limited to 'src/Protocol/Protocol_1_10.h')
-rw-r--r--src/Protocol/Protocol_1_10.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/Protocol/Protocol_1_10.h b/src/Protocol/Protocol_1_10.h
new file mode 100644
index 000000000..df64758e4
--- /dev/null
+++ b/src/Protocol/Protocol_1_10.h
@@ -0,0 +1,37 @@
+
+// Protocol_1_10.h
+
+/*
+Declares the 1.10 protocol classes:
+ - cProtocol_1_10
+ - release 1.10 protocol (#210), also used by 1.10.1 and 1.10.2
+*/
+
+
+
+
+
+#pragma once
+
+#include "Protocol_1_9.h"
+
+
+
+
+
+class cProtocol_1_10_0 :
+ public cProtocol_1_9_4
+{
+ typedef cProtocol_1_9_4 super;
+
+public:
+ cProtocol_1_10_0(cClientHandle * a_Client, const AString &a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State);
+
+ virtual void SendSoundEffect(const AString & a_SoundName, double a_X, double a_Y, double a_Z, float a_Volume, float a_Pitch) override;
+
+ virtual void HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) override;
+
+protected:
+ virtual void WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_Entity) override;
+ virtual void WriteMobMetadata(cPacketizer & a_Pkt, const cMonster & a_Mob) override;
+};