diff options
author | Lane Kolbly <lane@rscheme.org> | 2017-09-04 17:58:38 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2017-09-04 17:58:38 +0200 |
commit | 028a35ef0d4719e56a5bcc1a3f2a780128498f5d (patch) | |
tree | 67d5e9a4fdf9a89f59578b47149799b5b9550719 /src/Protocol/Protocol_1_12.h | |
parent | GetPacketID for protocol packet IDs (#3977) (diff) | |
download | cuberite-028a35ef0d4719e56a5bcc1a3f2a780128498f5d.tar cuberite-028a35ef0d4719e56a5bcc1a3f2a780128498f5d.tar.gz cuberite-028a35ef0d4719e56a5bcc1a3f2a780128498f5d.tar.bz2 cuberite-028a35ef0d4719e56a5bcc1a3f2a780128498f5d.tar.lz cuberite-028a35ef0d4719e56a5bcc1a3f2a780128498f5d.tar.xz cuberite-028a35ef0d4719e56a5bcc1a3f2a780128498f5d.tar.zst cuberite-028a35ef0d4719e56a5bcc1a3f2a780128498f5d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol_1_12.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Protocol/Protocol_1_12.h b/src/Protocol/Protocol_1_12.h index ed47f7ef2..9b87494a6 100644 --- a/src/Protocol/Protocol_1_12.h +++ b/src/Protocol/Protocol_1_12.h @@ -30,8 +30,6 @@ class cProtocol_1_12 : public: cProtocol_1_12(cClientHandle * a_Client, const AString &a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State); - virtual UInt32 GetPacketId(eOutgoingPackets a_Packet) override; - virtual void SendCollectEntity(const cEntity & a_Entity, const cPlayer & a_Player, int a_Count) override; virtual void SendHideTitle(void) override; virtual void SendResetTitle(void) override; @@ -45,6 +43,10 @@ protected: virtual void HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) override; virtual void WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_Entity) override; virtual void WriteMobMetadata(cPacketizer & a_Pkt, const cMonster & a_Mob) override; + +protected: + + virtual UInt32 GetPacketId(eOutgoingPackets a_Packet) override; }; @@ -59,9 +61,9 @@ class cProtocol_1_12_1 : public: cProtocol_1_12_1(cClientHandle * a_Client, const AString &a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State); +protected: virtual UInt32 GetPacketId(eOutgoingPackets a_Packet) override; -protected: virtual bool HandlePacket(cByteBuffer & a_ByteBuffer, UInt32 a_PacketType) override; virtual void HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) override; }; |