untangle-puzzlegame/Library/PackageCache/com.unity.inputsystem@e2c83221d2dc/InputSystem/Devices/ICustomDeviceReset.cs
2025-04-17 17:33:08 -04: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();
}
}