forked from BilalY/Rasagar
9 lines
146 B
C#
9 lines
146 B
C#
namespace UnityEditor.ShaderGraph
|
|
{
|
|
interface IMaterialSlotHasValue<T>
|
|
{
|
|
T defaultValue { get; }
|
|
T value { get; }
|
|
}
|
|
}
|