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 '')
-rw-r--r--src/Protocol/Protocol_1_10.h (renamed from src/Protocol/Protocol110x.h)23
1 files changed, 13 insertions, 10 deletions
diff --git a/src/Protocol/Protocol110x.h b/src/Protocol/Protocol_1_10.h
index 64ef8acb5..df64758e4 100644
--- a/src/Protocol/Protocol110x.h
+++ b/src/Protocol/Protocol_1_10.h
@@ -1,11 +1,10 @@
-// Protocol110x.h
+// Protocol_1_10.h
/*
-Declares the 1.10.x protocol classes:
- - cProtocol1100
- - release 1.10.0 protocol (#210)
-(others may be added later in the future for the 1.10 release series)
+Declares the 1.10 protocol classes:
+ - cProtocol_1_10
+ - release 1.10 protocol (#210), also used by 1.10.1 and 1.10.2
*/
@@ -14,15 +13,19 @@ Declares the 1.10.x protocol classes:
#pragma once
-#include "Protocol19x.h"
+#include "Protocol_1_9.h"
-class cProtocol1100 :
- public cProtocol194
+
+
+
+
+class cProtocol_1_10_0 :
+ public cProtocol_1_9_4
{
- typedef cProtocol194 super;
+ typedef cProtocol_1_9_4 super;
public:
- cProtocol1100(cClientHandle * a_Client, const AString &a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State);
+ 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;