~ruther/NosSmooth

1e423618b2f52d910ac890a3c6416b8ea0b2d6ba — František Boháček 3 years ago 7857314
feat: remove unnecessary in packet converter
1 files changed, 0 insertions(+), 29 deletions(-)

D Core/NosSmooth.Packets/Converters/Packets/InPacketConverter.cs
D Core/NosSmooth.Packets/Converters/Packets/InPacketConverter.cs => Core/NosSmooth.Packets/Converters/Packets/InPacketConverter.cs +0 -29
@@ 1,29 0,0 @@
//
//  InPacketConverter.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using NosSmooth.Packets.Packets.Server.Entities;
using NosSmooth.Packets.Packets.Server.Map;
using Remora.Results;

namespace NosSmooth.Packets.Converters.Packets;

/// <summary>
/// Converter for "in" packet. <see cref="InPacket"/>.
/// </summary>
public class InPacketConverter : BaseTypeConverter<InPacket>
{
    /// <inheritdoc />
    public override Result Serialize(InPacket? obj, PacketStringBuilder builder)
    {
        throw new System.NotImplementedException();
    }

    /// <inheritdoc />
    public override Result<InPacket?> Deserialize(PacketStringEnumerator stringEnumerator)
    {
        throw new System.NotImplementedException();
    }
}
\ No newline at end of file

Do not follow this link