11 lines
141 B
C#
11 lines
141 B
C#
using UnityEngine;
|
|
|
|
public class ClearCounter : MonoBehaviour
|
|
{
|
|
|
|
public void Interact()
|
|
{
|
|
Debug.Log("Interacted!");
|
|
}
|
|
|
|
}
|