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