diff --git a/GameRes/Utility.cs b/GameRes/Utility.cs index 4ebe2048..1dd599a5 100644 --- a/GameRes/Utility.cs +++ b/GameRes/Utility.cs @@ -530,4 +530,10 @@ namespace GameRes.Utility return !(b == a); } } + + public interface IDataUnpacker + { + byte[] Data { get; } + void Unpack (); + } }