From 791bf732fd490700748f798c617ecac1af152cd4 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Mon, 8 Jul 2013 12:59:15 +0000 Subject: 1.6.2 protocol implemented, both in MCServer and in ProtoProxy git-svn-id: http://mc-server.googlecode.com/svn/trunk@1669 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Protocol/Protocol16x.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'source/Protocol/Protocol16x.h') diff --git a/source/Protocol/Protocol16x.h b/source/Protocol/Protocol16x.h index a357fc05f..4395108b9 100644 --- a/source/Protocol/Protocol16x.h +++ b/source/Protocol/Protocol16x.h @@ -5,6 +5,8 @@ Declares the 1.6.x protocol classes: - cProtocol161 - release 1.6.1 protocol (#73) + - cProtocol162 + - release 1.6.2 protocol (#74) (others may be added later in the future for the 1.6 release series) */ @@ -28,6 +30,8 @@ class cProtocol161 : public: cProtocol161(cClientHandle * a_Client); +protected: + // cProtocol150 overrides: virtual void SendAttachEntity (const cEntity & a_Entity, const cEntity * a_Vehicle) override; virtual void SendChat (const AString & a_Message) override; @@ -49,3 +53,20 @@ public: + +class cProtocol162 : + public cProtocol161 +{ + typedef cProtocol161 super; + +public: + cProtocol162(cClientHandle * a_Client); + +protected: + // cProtocol161 overrides: + virtual void SendPlayerMaxSpeed(void) override; +} ; + + + + -- cgit v1.2.3