TurnBasedStrategyCourse/Library/PackageCache/com.unity.shadergraph@16.0.1/Editor/Data/Graphs/IMaterialSlotHasValue.cs

9 lines
146 B
C#

namespace UnityEditor.ShaderGraph
{
interface IMaterialSlotHasValue<T>
{
T defaultValue { get; }
T value { get; }
}
}