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