Project_WL/Assets/Script/UI/Lobby/Lobby_TopRightMoney.cs

16 lines
277 B
C#

public class Lobby_TopRightMoney : MyCoroutine
{
public MoneyForm[] moneyForms;
private void Start()
{
Set_Money();
Set_Repeat_for1sec(Set_Money);
}
void Set_Money()
{
moneyForms[0].Set(1);
moneyForms[1].Set(2);
}
}