continuity/Rai.PacketMediator/IOutgoingPacket.cs

9 lines
191 B
C#
Raw Normal View History

// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
namespace Rai.PacketMediator;
public interface IOutgoingPacket : IPacket
{
public byte[] Serialize();
}