canto/Assets/Scripts/Input/Atoms/EventReferences/ActionMapEventReference.cs
2025-10-02 15:28:03 -04:00

17 lines
554 B
C#

using System;
using KitsuneCafe.Input;
namespace UnityAtoms.KitsuneCafe.Input
{
/// <summary>
/// Event Reference of type `ActionMap`. Inherits from `AtomEventReference&lt;ActionMap, ActionMapVariable, ActionMapEvent, ActionMapVariableInstancer, ActionMapEventInstancer&gt;`.
/// </summary>
[Serializable]
public sealed class ActionMapEventReference : AtomEventReference<
ActionMap,
ActionMapVariable,
ActionMapEvent,
ActionMapVariableInstancer,
ActionMapEventInstancer>, IGetEvent
{ }
}