Files
FarmingTut/Library/PackageCache/com.unity.shadergraph@608f316e1f48/Editor/Drawing/Controls/IControlAttribute.cs
Caleb Sandford deQuincey e2595d25ab Initial commit
2025-05-14 21:47:05 +01: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);
}
}