12 lines
331 B
C#
12 lines
331 B
C#
// Licensed to Timothy Schenk under the Apache 2.0 License.
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
namespace RaiNote.PacketMediator;
|
|
|
|
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
|
|
public interface IIncomingPacket : IPacket
|
|
{
|
|
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
|
|
public void Deserialize(byte[] data);
|
|
}
|