17 lines
602 B
C#
17 lines
602 B
C#
using System;
|
|
using KitsuneCafe.Input;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Event Reference of type `ControlScheme`. Inherits from `AtomEventReference<ControlScheme, ControlSchemeVariable, ControlSchemeEvent, ControlSchemeVariableInstancer, ControlSchemeEventInstancer>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class ControlSchemeEventReference : AtomEventReference<
|
|
ControlScheme,
|
|
ControlSchemeVariable,
|
|
ControlSchemeEvent,
|
|
ControlSchemeVariableInstancer,
|
|
ControlSchemeEventInstancer>, IGetEvent
|
|
{ }
|
|
}
|