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