12 lines
221 B
C#
12 lines
221 B
C#
|
|
using UnityEngine;
|
|
|
|
public class Bed : BaseInteractableObject
|
|
{
|
|
public override void Interact(Player player)
|
|
{
|
|
Debug.Log("Interact with bed");
|
|
player.SetPlayerState(ActionStates.Sitting);
|
|
}
|
|
}
|