2024-02-04 18:52:45 +00:00
|
|
|
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
|
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();
|
|
|
|
}
|