12 lines
352 B
C#
12 lines
352 B
C#
using System;
|
|
using UnityEngine.Events;
|
|
using KitsuneCafe.Input;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// None generic Unity Event of type `ActionMapPair`. Inherits from `UnityEvent<ActionMapPair>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class ActionMapPairUnityEvent : UnityEvent<ActionMapPair> { }
|
|
}
|