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