using UnityEngine; using UnityAtoms.BaseAtoms; using KitsuneCafe.Input; namespace UnityAtoms.KitsuneCafe.Input { /// /// Variable Instancer of type `ControlScheme`. Inherits from `AtomVariableInstancer<ControlSchemeVariable, ControlSchemePair, ControlScheme, ControlSchemeEvent, ControlSchemePairEvent, ControlSchemeControlSchemeFunction>`. /// [EditorIcon("atom-icon-hotpink")] [AddComponentMenu("Unity Atoms/Variable Instancers/ControlScheme Variable Instancer")] public class ControlSchemeVariableInstancer : AtomVariableInstancer< ControlSchemeVariable, ControlSchemePair, ControlScheme, ControlSchemeEvent, ControlSchemePairEvent, ControlSchemeControlSchemeFunction> { } }