unity-atoms/Packages/Core/Runtime/Interfaces/IGetValue.cs
2020-03-21 22:45:39 +01:00

10 lines
168 B
C#

namespace UnityAtoms
{
/// <summary>
/// Interface for getting a value.
/// </summary>
public interface IGetValue<T>
{
T GetValue();
}
}