20 lines
328 B
C#
20 lines
328 B
C#
|
/*
|
||
|
* authors: ryan lin, mark joshwel
|
||
|
* date: 10/8/2024
|
||
|
* description: common interactable behaviour class
|
||
|
*/
|
||
|
|
||
|
using UnityEngine;
|
||
|
|
||
|
/// <summary>
|
||
|
/// TODO
|
||
|
/// </summary>
|
||
|
public class CommonInteractable : MonoBehaviour
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// TODO
|
||
|
/// </summary>
|
||
|
public virtual void Interact()
|
||
|
{
|
||
|
}
|
||
|
}
|