unity-atoms/Packages/Core/Runtime/Variables/IWithValue.cs
2019-10-01 17:27:22 +02:00

8 lines
102 B
C#

namespace UnityAtoms
{
public interface IWithValue<T>
{
T Value { get; set; }
}
}