2021-06-25 07:50:12 -04:00

8 lines
122 B
C#

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