12 lines
453 B
C#
12 lines
453 B
C#
using UnityEngine;
|
|
using KitsuneCafe.Input;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Event Instancer of type `ActionMap`. Inherits from `AtomEventInstancer<ActionMap, ActionMapEvent>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-sign-blue")]
|
|
[AddComponentMenu("Unity Atoms/Event Instancers/ActionMap Event Instancer")]
|
|
public class ActionMapEventInstancer : AtomEventInstancer<ActionMap, ActionMapEvent> { }
|
|
}
|