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

11 lines
174 B
C#

using UnityEngine;
public class Fridge : BaseInteractableObject
{
public override void Interact(Player player)
{
Debug.Log("Interact with Fridge");
}
}