// // 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; /// /// Converter for "in" packet. . /// public class InPacketConverter : BaseTypeConverter { /// public override Result Serialize(InPacket? obj, PacketStringBuilder builder) { throw new System.NotImplementedException(); } /// public override Result Deserialize(PacketStringEnumerator stringEnumerator) { throw new System.NotImplementedException(); } }