【m】框架大更新
This commit is contained in:
26
Assets/03.YooAsset/Editor/AssetArtReporter/ReportScanInfo.cs
Normal file
26
Assets/03.YooAsset/Editor/AssetArtReporter/ReportScanInfo.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user