14 lines
433 B
C#
14 lines
433 B
C#
using UnityEngine;
|
|
using KitsuneCafe.Input;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Event of type `ActionMapPair`. Inherits from `AtomEvent<ActionMapPair>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-cherry")]
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Events/ActionMapPair", fileName = "ActionMapPairEvent")]
|
|
public sealed class ActionMapPairEvent : AtomEvent<ActionMapPair>
|
|
{
|
|
}
|
|
}
|