using UnityEngine; using UnityAtoms.BaseAtoms; using KitsuneCafe.ItemSystem; namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem { /// /// Variable Instancer of type `Equipment`. Inherits from `AtomVariableInstancer<EquipmentVariable, EquipmentPair, Equipment, EquipmentEvent, EquipmentPairEvent, EquipmentEquipmentFunction>`. /// [EditorIcon("atom-icon-hotpink")] [AddComponentMenu("Unity Atoms/Variable Instancers/Equipment Variable Instancer")] public class EquipmentVariableInstancer : AtomVariableInstancer< EquipmentVariable, EquipmentPair, Equipment, EquipmentEvent, EquipmentPairEvent, EquipmentEquipmentFunction> { } }