【m】框架大更新
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace YooAsset.Editor
|
||||
{
|
||||
public class CollectResult
|
||||
{
|
||||
/// <summary>
|
||||
/// 收集命令
|
||||
/// </summary>
|
||||
public CollectCommand Command { private set; get; }
|
||||
|
||||
/// <summary>
|
||||
/// 收集的资源信息列表
|
||||
/// </summary>
|
||||
public List<CollectAssetInfo> CollectAssets { private set; get; }
|
||||
|
||||
public CollectResult(CollectCommand command, List<CollectAssetInfo> collectAssets)
|
||||
{
|
||||
Command = command;
|
||||
CollectAssets = collectAssets;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user