12 lines
316 B
C#
12 lines
316 B
C#
// Licensed to Timothy Schenk under the Apache 2.0 License.
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Rai.PacketMediator;
|
|
|
|
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
|
|
public interface IOutgoingPacket : IPacket
|
|
{
|
|
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
|
|
public byte[] Serialize();
|
|
}
|