unity-atoms/Source/Variables/IWithValue.cs
2019-05-29 18:56:26 +02:00

8 lines
102 B
C#

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