Using Super.
This commit is contained in:
committed by
Alexander Harkness
parent
f931590bf0
commit
9ee47e5999
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user