diff options
author | Lane Kolbly <lane@rscheme.org> | 2017-09-02 18:46:57 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2017-09-02 18:46:57 +0200 |
commit | aebfbfb8c8d623ded8d409d29983a5e871a475bc (patch) | |
tree | 7c2d46d7c4dceb1aa11bdd905739a54f3846a167 /src/Protocol/Protocol_1_9.h | |
parent | Revert "Replace ItemCallbacks with lambdas (#3948)" (diff) | |
download | cuberite-aebfbfb8c8d623ded8d409d29983a5e871a475bc.tar cuberite-aebfbfb8c8d623ded8d409d29983a5e871a475bc.tar.gz cuberite-aebfbfb8c8d623ded8d409d29983a5e871a475bc.tar.bz2 cuberite-aebfbfb8c8d623ded8d409d29983a5e871a475bc.tar.lz cuberite-aebfbfb8c8d623ded8d409d29983a5e871a475bc.tar.xz cuberite-aebfbfb8c8d623ded8d409d29983a5e871a475bc.tar.zst cuberite-aebfbfb8c8d623ded8d409d29983a5e871a475bc.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol_1_9.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Protocol/Protocol_1_9.h b/src/Protocol/Protocol_1_9.h index 3fbbe86da..200f10004 100644 --- a/src/Protocol/Protocol_1_9.h +++ b/src/Protocol/Protocol_1_9.h @@ -51,6 +51,9 @@ public: cProtocol_1_9_0(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State); + /** Get the packet ID for a given packet */ + virtual UInt32 GetPacketId(eOutgoingPackets a_Packet) override; + /** Called when client sends some data: */ virtual void DataReceived(const char * a_Data, size_t a_Size) override; @@ -336,13 +339,10 @@ class cProtocol_1_9_4 : public: cProtocol_1_9_4(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State); + virtual UInt32 GetPacketId(eOutgoingPackets a_Packet) override; + // cProtocol_1_9_2 overrides: - virtual void SendCollectEntity (const cEntity & a_Entity, const cPlayer & a_Player, int a_Count) override; virtual void SendChunkData (int a_ChunkX, int a_ChunkZ, cChunkDataSerializer & a_Serializer) override; - virtual void SendEntityEffect (const cEntity & a_Entity, int a_EffectID, int a_Amplifier, short a_Duration) override; - virtual void SendEntityProperties(const cEntity & a_Entity) override; - virtual void SendPlayerMaxSpeed (void) override; - virtual void SendTeleportEntity (const cEntity & a_Entity) override; virtual void SendUpdateSign (int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4) override; virtual void HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) override; |