From 54ae9e191e36698a1b5a99dc5e852a41eaeecb85 Mon Sep 17 00:00:00 2001 From: morkt Date: Mon, 1 Jun 2015 00:51:02 +0400 Subject: [PATCH] (IDataUnpacker): new interface. --- GameRes/Utility.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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 (); + } }