PacketMediator/IIncomingPacket.cs
Timothy Schenk 3b1bc2f81a
Some checks failed
Release Rai.PacketMediator / preprocess (push) Successful in 2s
Release Rai.PacketMediator / build (push) Successful in 20s
Release Rai.PacketMediator / publish (push) Failing after 19s
Release Rai.PacketMediator / generate-licences (push) Successful in 30s
chore: Initial commit + v0.0.1
2024-02-08 13:07:44 +01:00

12 lines
335 B
C#

// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
using JetBrains.Annotations;
namespace Rai.PacketMediator;
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
public interface IIncomingPacket : IPacket
{
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
public void Deserialize(byte[] data);
}