2022-03-17 15:27:49 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace YooAsset.Editor
|
|
|
|
|
|
{
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
|
public class ReportAssetInfo
|
|
|
|
|
|
{
|
2022-03-17 21:52:08 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 资源路径
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string AssetPath;
|
2022-03-17 15:27:49 +08:00
|
|
|
|
|
2022-03-17 21:52:08 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 所属资源包
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string MainBundle;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 依赖的资源包
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public List<string> DependBundles = new List<string>();
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 依赖的资源列表
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public List<string> DependAssets = new List<string>();
|
2022-03-17 15:27:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|