Files
Bachelor-Arbeit-Adrian-Haefner/Library/PackageCache/com.unity.inputsystem@7fe8299111a7/InputSystem/Devices/ICustomDeviceReset.cs
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +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();
}
}