continuity/Server/Packets/IPacket.cs

7 lines
No EOL
132 B
C#

namespace Server.Packets;
public interface IPacket
{
public void Deserialize( byte[] data);
public byte[] Serialize();
}