IDecryptionServices.cs 293 B

1234567891011121314151617
  1. 
  2. namespace YooAsset
  3. {
  4. public struct DecryptionFileInfo
  5. {
  6. public string BundleName;
  7. public string FileHash;
  8. }
  9. public interface IDecryptionServices
  10. {
  11. /// <summary>
  12. /// 获取加密文件的数据偏移量
  13. /// </summary>
  14. ulong GetFileOffset(DecryptionFileInfo fileInfo);
  15. }
  16. }