Files

14 lines
257 B
C#
Raw Permalink Normal View History

2025-10-31 11:18:23 +08:00
using System;
namespace YooAsset.Editor
{
public class BuildPipelineAttribute : Attribute
{
public string PipelineName;
public BuildPipelineAttribute(string name)
{
this.PipelineName = name;
}
}
}