14 lines
233 B
C#
14 lines
233 B
C#
/*
|
|
* authors: mark joshwel
|
|
* date: 10/8/2024
|
|
* description: lift behaviour implementation
|
|
*/
|
|
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// lift-ting behaviour for lifts
|
|
/// </summary>
|
|
public class LiftController : MonoBehaviour
|
|
{
|
|
}
|