1 2 3 4 5 6
using UnityEngine; public abstract class RayHit : MonoBehaviour { public abstract void Hit(HitInfo hit, bool forceCall = false); }