mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-20 23:30:08 +00:00
17 lines
293 B
C#
17 lines
293 B
C#
|
|
namespace YooAsset
|
|
{
|
|
public struct DecryptionFileInfo
|
|
{
|
|
public string BundleName;
|
|
public string FileHash;
|
|
}
|
|
|
|
public interface IDecryptionServices
|
|
{
|
|
/// <summary>
|
|
/// 获取加密文件的数据偏移量
|
|
/// </summary>
|
|
ulong GetFileOffset(DecryptionFileInfo fileInfo);
|
|
}
|
|
} |