VR4RoboticArm3/VR4RoboticArm/Library/PackageCache/com.unity.shadergraph/Editor/Drawing/Controls/IControlAttribute.cs
IonutMocanu 1d45ac8df0 Main1
2025-09-15 21:53:38 +03: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);
}
}