12 lines
481 B
C#
12 lines
481 B
C#
using UnityEngine;
|
|
using KitsuneCafe.Input;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Input
|
|
{
|
|
/// <summary>
|
|
/// Event Instancer of type `ControlScheme`. Inherits from `AtomEventInstancer<ControlScheme, ControlSchemeEvent>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-sign-blue")]
|
|
[AddComponentMenu("Unity Atoms/Event Instancers/ControlScheme Event Instancer")]
|
|
public class ControlSchemeEventInstancer : AtomEventInstancer<ControlScheme, ControlSchemeEvent> { }
|
|
}
|