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

10 lines
180 B
C#

namespace UnityAtoms
{
/// <summary>
/// Interface for retrieving a Variable.
/// </summary>
public interface IVariable<T>
{
T Variable { get; }
}
}