11 lines
174 B
C#
11 lines
174 B
C#
|
|
using UnityEngine;
|
|
|
|
public class Fridge : BaseInteractableObject
|
|
{
|
|
public override void Interact(Player player)
|
|
{
|
|
Debug.Log("Interact with Fridge");
|
|
}
|
|
}
|