6 lines
105 B
C#
6 lines
105 B
C#
namespace GodotHostTest.AetherBind;
|
|
|
|
public interface IValueGetter<out T>
|
|
{
|
|
public T Value { get; }
|
|
} |