using UnityEngine;

public class ClearCounter : MonoBehaviour
{
    public void Interact()
    {
        Debug.Log("Interacted with ClearCounter!"); //Debug log to check if the interaction is working.
    }
}