minesweeper_game/Library/PackageCache/com.unity.shadergraph@cdef3258c742/Editor/Data/Nodes/IPropertyFromNode.cs
2025-03-15 14:30:26 -04:00

11 lines
208 B
C#

using UnityEditor.ShaderGraph.Internal;
namespace UnityEditor.ShaderGraph
{
interface IPropertyFromNode
{
AbstractShaderProperty AsShaderProperty();
int outputSlotId { get; }
}
}