Files
SimUL/Assets/Scripts/InteractableObjects/Bed.cs
T
Vladimir Koshevarov 31eb9fb04a added new animations
2023-02-22 18:06:13 +02:00

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);
}
}