17 lines
586 B
C#
17 lines
586 B
C#
using System;
|
|
using KitsuneCafe.Input;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Event Reference of type `ActionMapPair`. Inherits from `AtomEventReference<ActionMapPair, ActionMapVariable, ActionMapPairEvent, ActionMapVariableInstancer, ActionMapPairEventInstancer>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class ActionMapPairEventReference : AtomEventReference<
|
|
ActionMapPair,
|
|
ActionMapVariable,
|
|
ActionMapPairEvent,
|
|
ActionMapVariableInstancer,
|
|
ActionMapPairEventInstancer>, IGetEvent
|
|
{ }
|
|
}
|