IPackable.cs 161 B

12345678
  1. namespace InABox.Core
  2. {
  3. public interface IPackable
  4. {
  5. void Pack(FastBinaryWriter writer);
  6. void Unpack(FastBinaryReader reader);
  7. }
  8. }