using System.IO;
namespace Crysome.Common.Network.Packets;
public interface IPacket
{
void Write(BinaryWriter w);
void Read(BinaryReader r);
}