summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Protocol17x.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-04-14 18:52:21 +0200
committermadmaxoft <github@xoft.cz>2014-04-14 18:52:21 +0200
commit0f55dcf036381f951fb22219158182729453f841 (patch)
tree7de5e16f5821b32d4a2394d5028a46891a65efb6 /src/Protocol/Protocol17x.h
parentProtoProxy: Fixed weird gcc compilation errors. (diff)
downloadcuberite-0f55dcf036381f951fb22219158182729453f841.tar
cuberite-0f55dcf036381f951fb22219158182729453f841.tar.gz
cuberite-0f55dcf036381f951fb22219158182729453f841.tar.bz2
cuberite-0f55dcf036381f951fb22219158182729453f841.tar.lz
cuberite-0f55dcf036381f951fb22219158182729453f841.tar.xz
cuberite-0f55dcf036381f951fb22219158182729453f841.tar.zst
cuberite-0f55dcf036381f951fb22219158182729453f841.zip
Diffstat (limited to 'src/Protocol/Protocol17x.h')
-rw-r--r--src/Protocol/Protocol17x.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Protocol/Protocol17x.h b/src/Protocol/Protocol17x.h
index 91186b270..7d0196a21 100644
--- a/src/Protocol/Protocol17x.h
+++ b/src/Protocol/Protocol17x.h
@@ -306,3 +306,20 @@ protected:
+
+/** The version 5 lengthed protocol, used by 1.7.6 through 1.7.9. */
+class cProtocol176 :
+ public cProtocol172
+{
+ typedef cProtocol172 super;
+
+public:
+ cProtocol176(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State);
+
+ // cProtocol172 overrides:
+ virtual void SendPlayerSpawn(const cPlayer & a_Player) override;
+} ;
+
+
+
+