Files
TowerDefence/My project/Library/PackageCache/com.unity.shadergraph@c7cb9a0feac2/Editor/Data/Graphs/IMaterialSlotHasValue.cs

9 lines
146 B
C#
Raw Normal View History

2025-11-14 17:30:41 +00:00
namespace UnityEditor.ShaderGraph
{
interface IMaterialSlotHasValue<T>
{
T defaultValue { get; }
T value { get; }
}
}