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