update AssetArtScanner

资源扫描工具
This commit is contained in:
何冠峰
2025-01-22 15:19:16 +08:00
parent a38b76eb8f
commit 7cc985205a
40 changed files with 2409 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections;
using System.Collections.Generic;
namespace YooAsset.Editor
{
[Serializable]
public class ReportScanInfo
{
/// <summary>
/// 标题
/// </summary>
public string HeaderTitle;
/// <summary>
/// 扫描反馈的信息
/// </summary>
public string ScanInfo;
public ReportScanInfo(string headerTitle, string scanInfo)
{
HeaderTitle = headerTitle;
ScanInfo = scanInfo;
}
}
}