unity-atoms/Packages/Core/Runtime/Interfaces/IGetValue.cs

10 lines
168 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
namespace UnityAtoms
{
2020-03-21 17:45:39 -04:00
/// <summary>
/// Interface for getting a value.
/// </summary>
2020-03-01 20:26:06 -05:00
public interface IGetValue<T>
{
T GetValue();
}
}