using System; using UnityEngine; public interface IRaycastable { event Action OnRaycastHit; void PerformRaycast(); }