using UnityEngine; using UnityAtoms.BaseAtoms; namespace UnityAtoms.BaseAtoms { /// /// Variable Instancer of type `int`. Inherits from `AtomVariableInstancer<IntVariable, IntPair, int, IntEvent, IntPairEvent, IntIntFunction>`. /// [EditorIcon("atom-icon-hotpink")] [AddComponentMenu("Unity Atoms/Variable Instancers/Int Variable Instancer")] public class IntVariableInstancer : AtomVariableInstancer< IntVariable, IntPair, int, IntEvent, IntPairEvent, IntIntFunction, AtomCollection, AtomList> { } }