refactor : 代码重构

This commit is contained in:
何冠峰
2026-01-12 11:09:27 +08:00
committed by 何冠峰
parent d228e41df7
commit 5b81269090
1614 changed files with 44418 additions and 42154 deletions

View File

@@ -0,0 +1,14 @@
namespace YooAsset
{
/// <summary>
/// 缓存条目接口
/// </summary>
internal interface ICacheEntry
{
/// <summary>
/// Bundle 唯一标识
/// </summary>
string BundleGuid { get; }
}
}