Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ICustomDeviceReset.cs 368B

1234567891011121314
  1. namespace UnityEngine.InputSystem.LowLevel
  2. {
  3. /// <summary>
  4. /// A device that implements its own reset logic for when <see cref="InputSystem.ResetDevice"/>
  5. /// is called.
  6. /// </summary>
  7. internal interface ICustomDeviceReset
  8. {
  9. /// <summary>
  10. /// Reset the current device state.
  11. /// </summary>
  12. void Reset();
  13. }
  14. }