mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-15 04:00:16 +00:00
20 lines
428 B
C#
20 lines
428 B
C#
|
|
namespace YooAsset
|
|
{
|
|
/// <summary>
|
|
/// 验证缓存操作选项
|
|
/// </summary>
|
|
internal struct BCVerifyCacheOptions
|
|
{
|
|
/// <summary>
|
|
/// 要验证的资源包
|
|
/// </summary>
|
|
public PackageBundle Bundle { get; set; }
|
|
|
|
/// <summary>
|
|
/// 失败后直接移除缓存条目
|
|
/// </summary>
|
|
public bool DeleteCacheEntryOnFailure { get; set; }
|
|
}
|
|
}
|