8 lines
178 B
C#
8 lines
178 B
C#
|
public class UIBonusText : UITextDisplayBase
|
||
|
{
|
||
|
protected override void Awake()
|
||
|
{
|
||
|
base.Awake();
|
||
|
_textChanger = FindObjectOfType<BonusController>();
|
||
|
}
|
||
|
}
|