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