Files
RPGBook/Library/PackageCache/com.unity.shadergraph@052d95cfe62a/Editor/Data/Graphs/IMaterialSlotHasValue.cs
SHOUTING_PIRATE f5928e04c4 intial commit
2025-07-21 17:10:16 +01:00

9 lines
146 B
C#

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