File size: 233 Bytes
18a519f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#if UNITY_INPUT_SYSTEM_ENABLE_UI
using UnityEngine.EventSystems;

namespace UnityEngine.InputSystem.UI
{
    internal class BaseInputOverride : BaseInput
    {
        public override string compositionString { get; }
    }
}
#endif