13 lines
335 B
C#
13 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);
|
||
|
}
|