1
0

Using Super.

This commit is contained in:
Mattes D
2020-04-13 18:38:06 +02:00
committed by Alexander Harkness
parent f931590bf0
commit 9ee47e5999
399 changed files with 1815 additions and 1381 deletions

View File

@@ -21,12 +21,13 @@ Declares the 1.11 protocol classes:
class cProtocol_1_11_0 :
class cProtocol_1_11_0:
public cProtocol_1_10_0
{
typedef cProtocol_1_10_0 Super;
using Super = cProtocol_1_10_0;
public:
cProtocol_1_11_0(cClientHandle * a_Client, const AString &a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State);
virtual void SendCollectEntity(const cEntity & a_Entity, const cPlayer & a_Player, int a_Count) override;
@@ -52,12 +53,13 @@ protected:
class cProtocol_1_11_1 :
class cProtocol_1_11_1:
public cProtocol_1_11_0
{
typedef cProtocol_1_11_0 Super;
using Super = cProtocol_1_11_0;
public:
cProtocol_1_11_1(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State);
virtual void HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) override;