mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
13 lines
467 B
C#
13 lines
467 B
C#
using UnityEngine;
|
|||
using UnityEngine.InputSystem;
|
|||
|
|||
namespace UnityAtoms.InputSystem
|
|||
{
|
|||
/// <summary>
|
|||
/// Event Instancer of type `PlayerInput`. Inherits from `AtomEventInstancer<PlayerInput, PlayerInputEvent>`.
|
|||
/// </summary>
|
|||
[EditorIcon("atom-icon-sign-blue")]
|
|||
[AddComponentMenu("Unity Atoms/Event Instancers/PlayerInput Event Instancer")]
|
|||
public class PlayerInputEventInstancer : AtomEventInstancer<PlayerInput, PlayerInputEvent> { }
|
|||
}
|