9 lines
293 B
C#
9 lines
293 B
C#
using KitsuneCafe.Input;
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Action of type `ActionMap`. Inherits from `AtomAction<ActionMap>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-purple")]
|
|
public abstract class ActionMapAction : AtomAction<ActionMap> { }
|
|
}
|