Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
1234567891011121314 |
- 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();
- }
- }
|