【m】插件上传

This commit is contained in:
2026-04-28 16:48:04 +08:00
parent 459db5ec01
commit 753878bdbb
631 changed files with 91583 additions and 11 deletions

View File

@@ -0,0 +1,18 @@
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
}
}