14 lines
257 B
C#
14 lines
257 B
C#
|
using System;
|
|||
|
|
|||
|
namespace YooAsset.Editor
|
|||
|
{
|
|||
|
public class BuildPipelineAttribute : Attribute
|
|||
|
{
|
|||
|
public string PipelineName;
|
|||
|
|
|||
|
public BuildPipelineAttribute(string name)
|
|||
|
{
|
|||
|
this.PipelineName = name;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|