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