canto/Assets/Scripts/Input/Atoms/VariableInstancers/ControlSchemeVariableInstancer.cs
2025-10-02 15:28:03 -04:00

20 lines
782 B
C#

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