8 lines
202 B
C#
8 lines
202 B
C#
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
namespace Rai.PacketMediator;
|
|
|
|
public interface IIncomingPacket : IPacket
|
|
{
|
|
public void Deserialize(byte[] data);
|
|
}
|