using TMPro;
using UnityEngine;

public class CountdownTimer : MonoBehaviour
{
    [SerializeField] TMP_Text _text;

    void OnValidate()
    {
        _text = GetComponent<TMP_Text>();
    }
    void Update()
    {
    }
}
