mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-14 19:40:47 +00:00
23 lines
324 B
C#
23 lines
324 B
C#
using System;
|
|
|
|
namespace YooAsset
|
|
{
|
|
[Serializable]
|
|
internal class DebugBundleInfo
|
|
{
|
|
/// <summary>
|
|
/// 资源包名称
|
|
/// </summary>
|
|
public string BundleName;
|
|
|
|
/// <summary>
|
|
/// 引用计数
|
|
/// </summary>
|
|
public int RefCount;
|
|
|
|
/// <summary>
|
|
/// 加载状态
|
|
/// </summary>
|
|
public int Status;
|
|
}
|
|
} |