2025-09-02 19:21:49 +08:00
|
|
|
|
using UnityEditor;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2025-01-09 11:31:04 +08:00
|
|
|
|
namespace YooAsset.Editor
|
|
|
|
|
{
|
|
|
|
|
public interface IBuildPipeline
|
|
|
|
|
{
|
2025-09-02 19:21:49 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 运行构建任务
|
|
|
|
|
/// </summary>
|
2025-01-09 11:31:04 +08:00
|
|
|
|
BuildResult Run(BuildParameters buildParameters, bool enableLog);
|
|
|
|
|
}
|
|
|
|
|
}
|