~ruther/NosSmooth

ref: 7857314e81d079122f80f1d417dcf82ec02ea4d2 NosSmooth/Core/NosSmooth.Packets/Converters/Packets/InPacketConverter.cs -rw-r--r-- 856 bytes
7857314e — František Boháček feat: add condition parameters to pinit sub packet 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
//  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();
    }
}
Do not follow this link