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

16 lines
321 B
C#

using System;
namespace UnityEditor.ShaderGraph
{
[AttributeUsage(AttributeTargets.Class)]
class HasDependenciesAttribute : Attribute
{
public HasDependenciesAttribute(Type minimalType)
{
this.minimalType = minimalType;
}
public Type minimalType { get; }
}
}