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

16 lines
278 B
C#
Raw Normal View History

2024-12-30 03:38:36 +00:00
public class Lobby_TopRightMoney : MyCoroutine
{
public MoneyForm[] moneyForms;
private void Start()
{
Set_Money();
Act_Repeat_for1sec = Set_Money;
}
void Set_Money()
{
moneyForms[0].Set(1);
moneyForms[1].Set(2);
}
}