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

9 lines
293 B
C#

using KitsuneCafe.Input;
namespace UnityAtoms.KitsuneCafe.Input
{
/// <summary>
/// Action of type `ActionMap`. Inherits from `AtomAction&lt;ActionMap&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class ActionMapAction : AtomAction<ActionMap> { }
}