Files
TowerDefence/My project/Library/PackageCache/com.unity.shadergraph@c7cb9a0feac2/Editor/Drawing/Controls/IControlAttribute.cs
Caleb Sandford deQuincey 334021d04e Started project
2025-11-14 17:30:41 +00: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);
}
}