1
0
mirror of https://github.com/oliverbooth/TcpDotNet synced 2024-11-10 03:55:41 +00:00

fix: HandshakeRequestPacket inherits RequestPacket

This commit is contained in:
Oliver Booth 2024-02-12 17:58:38 +00:00
parent 65cb143b06
commit ff78acfb56
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5

View File

@ -4,7 +4,7 @@ namespace TcpDotNet.Protocol.Packets.ServerBound;
/// Represents a packet which requests a handshake with a <see cref="ProtocolListener" />. /// Represents a packet which requests a handshake with a <see cref="ProtocolListener" />.
/// </summary> /// </summary>
[Packet(0x7FFFFFE0)] [Packet(0x7FFFFFE0)]
internal sealed class HandshakeRequestPacket : Packet internal sealed class HandshakeRequestPacket : RequestPacket
{ {
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="HandshakeRequestPacket" /> class. /// Initializes a new instance of the <see cref="HandshakeRequestPacket" /> class.