Files
Test-Multiplayer/Library/PackageCache/com.unity.shadergraph@2c9221ffedf4/Editor/Utilities/GenerationAPIAttribute.cs
pelpanagiotis 329b7d3183 First Commit
2025-12-21 18:31:02 +02: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() { }
}
}