IPackable.cs 171 B

12345678910
  1. using System.IO;
  2. namespace InABox.Core
  3. {
  4. public interface IPackable
  5. {
  6. void Pack(BinaryWriter writer);
  7. void Unpack(BinaryReader reader);
  8. }
  9. }