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