using System.Collections; using System.Collections.Generic; using UnityEngine; public abstract class Interactable : MonoBehaviour { public string message="Press E to Interact"; public void BaseInteract() { Interact(); } protected virtual void Interact() { } }