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