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

17 lines
602 B
C#

using System;
using KitsuneCafe.Input;
namespace UnityAtoms.KitsuneCafe.Input
{
/// <summary>
/// Event Reference of type `ControlScheme`. Inherits from `AtomEventReference&lt;ControlScheme, ControlSchemeVariable, ControlSchemeEvent, ControlSchemeVariableInstancer, ControlSchemeEventInstancer&gt;`.
/// </summary>
[Serializable]
public sealed class ControlSchemeEventReference : AtomEventReference<
ControlScheme,
ControlSchemeVariable,
ControlSchemeEvent,
ControlSchemeVariableInstancer,
ControlSchemeEventInstancer>, IGetEvent
{ }
}