23 lines
461 B
C#
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()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|