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

10 lines
180 B
C#
Raw Normal View History

namespace UnityAtoms
{
2020-03-21 17:45:39 -04:00
/// <summary>
/// Interface for retrieving a Variable.
/// </summary>
public interface IVariable<T>
{
T Variable { get; }
}
}