continuity/Server/Packets/IPacket.cs

7 lines
132 B
C#

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