(IDataUnpacker): new interface.

This commit is contained in:
morkt 2015-06-01 00:51:02 +04:00
parent 31b114f7a4
commit 54ae9e191e

View File

@ -530,4 +530,10 @@ namespace GameRes.Utility
return !(b == a);
}
}
public interface IDataUnpacker
{
byte[] Data { get; }
void Unpack ();
}
}