using System; namespace UnityAtoms { /// /// Reference of type `bool`. Inherits from `AtomReference<bool, BoolVariable, BoolConstant>`. /// [Serializable] public sealed class BoolReference : AtomReference< bool, BoolVariable, BoolConstant> { } }