using System.IO; namespace InABox.Core { public interface IPackable { void Pack(BinaryWriter writer); void Unpack(BinaryReader reader); } }