continuity/Rai.PacketMediator/IOutgoingPacket.cs

13 lines
337 B
C#
Raw Normal View History

// Copyright (c) 2023 Timothy Schenk. Subject to 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();
}