mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
8c1d6f215c
13 lines
408 B
C#
13 lines
408 B
C#
using System;
|
|||
using UnityEngine.Events;
|
|||
using UnityEngine.InputSystem;
|
|||
|
|||
namespace UnityAtoms.InputSystem
|
|||
{
|
|||
/// <summary>
|
|||
/// None generic Unity Event of type `InputAction.CallbackContext`. Inherits from `UnityEvent<InputAction.CallbackContext>`.
|
|||
/// </summary>
|
|||
[Serializable]
|
|||
public sealed class InputAction_CallbackContextUnityEvent : UnityEvent<InputAction.CallbackContext> { }
|
|||
}
|