untangle-puzzlegame/Library/PackageCache/com.unity.shadergraph@cdef3258c742/Editor/Utilities/GenerationAPIAttribute.cs
2025-04-17 17:33:08 -04:00

12 lines
366 B
C#

using System;
using System.Runtime.InteropServices;
namespace UnityEditor.ShaderGraph
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface, Inherited = true, AllowMultiple = false)]
internal class GenerationAPIAttribute : Attribute
{
public GenerationAPIAttribute() { }
}
}