Files
godot-host-test/addons/GodotDI/IValueGetter.cs
T
2026-07-18 12:09:43 +02:00

6 lines
102 B
C#

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