namespace Server.Packets; public interface IPacket { Span<Byte> Serialize(); void Deserialize(Span<Byte> bytes); }