No Description
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.

BaseInputOverride.cs 233B

1234567891011
  1. #if UNITY_INPUT_SYSTEM_ENABLE_UI
  2. using UnityEngine.EventSystems;
  3. namespace UnityEngine.InputSystem.UI
  4. {
  5. internal class BaseInputOverride : BaseInput
  6. {
  7. public override string compositionString { get; }
  8. }
  9. }
  10. #endif