9 lines
179 B
C#
9 lines
179 B
C#
|
public class UIScoreText : UITextDisplayBase
|
||
|
{
|
||
|
protected override void Awake()
|
||
|
{
|
||
|
base.Awake();
|
||
|
_textChanger = FindObjectOfType<ScoreController>();
|
||
|
}
|
||
|
}
|