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

17 lines
586 B
C#

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