This repository has been archived on 2024-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
sota/RunningLateGame/Assets/Scripts/CommonInteractable.cs
Mark Joshwel 51148ef5e2 game(scripts): [big] standardise
just format and add placeholder xml comments where not placed
2024-08-10 02:25:46 +08:00

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()
{
}
}