11 lines
155 B
C#
11 lines
155 B
C#
|
|
using UnityEngine;
|
|
|
|
public class Bed : BaseInteractableObject
|
|
{
|
|
public override void Interact()
|
|
{
|
|
Debug.Log("Interact with bed");
|
|
}
|
|
}
|