2024-09-09 11:07:16 +03:00

8 lines
122 B
C#

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