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