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