Files
com.misaki.graph-view/Runtime/Attributes/NodeOutputAttribute.cs
2024-11-02 17:58:52 +09:00

15 lines
339 B
C#

using System;
namespace Misaki.GraphView
{
[AttributeUsage(AttributeTargets.Field, Inherited = true, AllowMultiple = false)]
public class NodeOutputAttribute : System.Attribute
{
public string Name { get; }
public NodeOutputAttribute(string name = null)
{
Name = name;
}
}
}