2025-01-17 13:10:20 +01:00

8 lines
122 B
C#

namespace Unity.VisualScripting
{
public interface IDefaultValue<out T>
{
T defaultValue { get; }
}
}