Files
godot-host-test/addons/AetherBind/IValueSetter.cs
T
2026-07-18 17:05:03 +02:00

6 lines
106 B
C#

namespace GodotHostTest.AetherBind;
public interface IValueSetter<in T>
{
public void Set(T value);
}