/*
* authors: mark joshwel, ryan lin
* date: 10/8/2024
* description: common interactable behaviour class
*/
using UnityEngine;
///
/// base behaviour class for interactable objects
///
public class CommonInteractable : MonoBehaviour
{
///
/// the prompt to display when the player is looking at the object
///
public string interactionPrompt = "";
///
/// skeleton function for interacting with the object
///
public virtual void Interact()
{
}
}