Files
2026-07-18 17:05:03 +02:00

6 lines
105 B
C#

namespace GodotHostTest.AetherBind;
public interface IValueGetter<out T>
{
public T Value { get; }
}