rabidus-test/Assets/Scripts/TimerText.cs

13 lines
255 B
C#
Raw Normal View History

2023-07-24 16:38:13 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2023-08-15 17:38:54 +03:00
public class TimerText : UITextDisplayBase
2023-07-24 16:38:13 +03:00
{
2023-08-15 17:38:54 +03:00
protected override void Awake()
2023-07-24 16:38:13 +03:00
{
2023-08-15 17:38:54 +03:00
base.Awake();
_textChanger = FindObjectOfType<vTimerCounter>();
2023-07-24 16:38:13 +03:00
}
}