arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/ICustomDeviceReset.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02:00

15 lines
368 B
C#

namespace UnityEngine.InputSystem.LowLevel
{
/// <summary>
/// A device that implements its own reset logic for when <see cref="InputSystem.ResetDevice"/>
/// is called.
/// </summary>
internal interface ICustomDeviceReset
{
/// <summary>
/// Reset the current device state.
/// </summary>
void Reset();
}
}