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