Rasagar/Library/PackageCache/com.unity.shadergraph/Editor/Utilities/GenerationAPIAttribute.cs
2024-08-26 23:07:20 +03: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() { }
}
}