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