continuity/Rai.PacketMediator/IOutgoingPacket.cs

13 lines
324 B
C#
Raw Normal View History

2024-02-07 15:40:36 +00:00
// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
2024-02-04 19:05:39 +00:00
using JetBrains.Annotations;
namespace Rai.PacketMediator;
2024-02-04 19:05:39 +00:00
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
public interface IOutgoingPacket : IPacket
{
2024-02-04 19:05:39 +00:00
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
public byte[] Serialize();
}