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