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

7 lines
98 B
C#

namespace UnityAtoms
{
public interface IVariable<T>
{
T Variable { get; }
}
}