6 lines
103 B
C#
6 lines
103 B
C#
namespace GodotHostTest.GodotDI;
|
|
|
|
public interface IValueSetter<in T>
|
|
{
|
|
public void Set(T value);
|
|
} |