using UnityEngine; using UnityAtoms.BaseAtoms; using KitsuneCafe.ItemSystem; namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem { /// /// Variable Instancer of type `Item`. Inherits from `AtomVariableInstancer<ItemVariable, ItemPair, Item, ItemEvent, ItemPairEvent, ItemItemFunction>`. /// [EditorIcon("atom-icon-hotpink")] [AddComponentMenu("Unity Atoms/Variable Instancers/Item Variable Instancer")] public class ItemVariableInstancer : AtomVariableInstancer< ItemVariable, ItemPair, Item, ItemEvent, ItemPairEvent, ItemItemFunction> { } }