mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-25 02:00:16 +00:00
15 lines
247 B
C#
15 lines
247 B
C#
|
|
namespace YooAsset
|
|
{
|
|
/// <summary>
|
|
/// 缓存条目接口
|
|
/// </summary>
|
|
internal interface ICacheEntry
|
|
{
|
|
/// <summary>
|
|
/// Bundle 唯一标识
|
|
/// </summary>
|
|
string BundleGuid { get; }
|
|
}
|
|
}
|