VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.shadergraph/Editor/Utilities/GenerationAPIAttribute.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +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() { }
}
}