13 lines
205 B
C#
13 lines
205 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class ClearCounter : MonoBehaviour
|
|
{
|
|
|
|
public void Interact()
|
|
{
|
|
Debug.Log("Interacted!");
|
|
}
|
|
|
|
}
|