using System; namespace UnityAtoms { /// /// Reference of type `float`. Inherits from `AtomReference<float, FloatVariable>`. /// [Serializable] public sealed class FloatReference : AtomReference< float, FloatVariable> { } }