Files
webRtc/Packages/com.unity.renderstreaming@3.1.0-exp.9/Runtime/Scripts/InputChannelReceiverBase.cs

19 lines
409 B
C#
Raw Normal View History

2026-04-28 16:48:04 +08:00
using System;
using UnityEngine.InputSystem;
namespace Unity.RenderStreaming
{
/// <summary>
///
/// </summary>
public abstract class InputChannelReceiverBase : DataChannelBase
{
/// <summary>
///
/// </summary>
#pragma warning disable 0067
public virtual event Action<InputDevice, InputDeviceChange> onDeviceChange;
#pragma warning restore 0067
}
}