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/LiftButtonInteractable.cs

23 lines
461 B
C#

/*
* authors: mark joshwel
* date: 10/8/2024
* description: lift button behaviour implementation
*/
using UnityEngine;
/// <summary>
/// lift button behaviour implementation
/// </summary>
public class LiftButtonInteractable : CommonInteractable
{
/// <summary>
/// the lift the button is controlling
/// </summary>
[SerializeField] private LiftController liftController;
public override void Interact()
{
}
}