10 lines
168 B
C#
Raw Normal View History

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