using UnityEngine; namespace FairyGUI { /// /// /// public enum HitTestMode { Default, Raycast } /// /// /// public interface IHitTest { /// /// /// /// /// /// bool HitTest(Rect contentRect, Vector2 localPoint); } }