Files
TowerDefence/My project/Library/PackageCache/com.unity.shadergraph@c7cb9a0feac2/Editor/Utilities/GenerationAPIAttribute.cs
Caleb Sandford deQuincey 334021d04e Started project
2025-11-14 17:30:41 +00: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() { }
}
}