mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-26 10:40:14 +00:00
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;
|
|
}
|
|
}
|
|
} |