1namespace UnityEditor.ShaderGraph 2{ 3 interface IMaterialSlotHasValue<T> 4 { 5 T defaultValue { get; } 6 T value { get; } 7 } 8}