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

12 lines
459 B
C#

using UnityEngine;
using KitsuneCafe.Input;
namespace UnityAtoms.KitsuneCafe.Input
{
/// <summary>
/// Value List of type `ActionMap`. Inherits from `AtomValueList&lt;ActionMap, ActionMapEvent&gt;`.
/// </summary>
[EditorIcon("atom-icon-piglet")]
[CreateAssetMenu(menuName = "Unity Atoms/Value Lists/ActionMap", fileName = "ActionMapValueList")]
public sealed class ActionMapValueList : AtomValueList<ActionMap, ActionMapEvent> { }
}