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