StellarXipher/Library/PackageCache/com.unity.shadergraph@d57efd43b1c1/Editor/Drawing/Controls/IControlAttribute.cs
2025-02-06 16:45:46 -05:00

12 lines
252 B
C#

using System.Reflection;
using UnityEngine.UIElements;
namespace UnityEditor.ShaderGraph.Drawing.Controls
{
interface IControlAttribute
{
VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo);
}
}