2022-10-29 20:24:53 -04:00

9 lines
196 B
C#

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