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

20 lines
714 B
C#

using UnityEngine;
using UnityAtoms.BaseAtoms;
using KitsuneCafe.Input;
namespace UnityAtoms.KitsuneCafe.Input
{
/// <summary>
/// Variable Instancer of type `ActionMap`. Inherits from `AtomVariableInstancer&lt;ActionMapVariable, ActionMapPair, ActionMap, ActionMapEvent, ActionMapPairEvent, ActionMapActionMapFunction&gt;`.
/// </summary>
[EditorIcon("atom-icon-hotpink")]
[AddComponentMenu("Unity Atoms/Variable Instancers/ActionMap Variable Instancer")]
public class ActionMapVariableInstancer : AtomVariableInstancer<
ActionMapVariable,
ActionMapPair,
ActionMap,
ActionMapEvent,
ActionMapPairEvent,
ActionMapActionMapFunction>
{ }
}