Files
SimUL/Assets/Scripts/InteractableObjects/Bed.cs
T

11 lines
155 B
C#

using UnityEngine;
public class Bed : BaseInteractableObject
{
public override void Interact()
{
Debug.Log("Interact with bed");
}
}