rabidus-test/Assets/Scripts/TimerText.cs

13 lines
255 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TimerText : UITextDisplayBase
{
protected override void Awake()
{
base.Awake();
_textChanger = FindObjectOfType<vTimerCounter>();
}
}