using System.Collections; using System.Collections.Generic; namespace YooAsset.Editor { public class CollectResult { /// /// 收集命令 /// public CollectCommand Command { private set; get; } /// /// 收集的资源信息列表 /// public List CollectAssets { private set; get; } public CollectResult(CollectCommand command) { Command = command; } public void SetCollectAssets(List collectAssets) { CollectAssets = collectAssets; } } }