Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }