using System.Collections; using System.Collections.Generic; using UnityEngine; public abstract class Triggerable : MonoBehaviour { public abstract void TriggerEvent(Collider other = null); }