2025-03-03 20:37:03 +08:00

12 lines
206 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Chest : MonoBehaviour, IInteractiable
{
public void TriggerAction()
{
Debug.Log("Open");
}
}