Exemplo n.º 1
0
 public static void NextDay()
 {
     Debug.Log(day.ToString());
     price = GameObject.Find("StockList").GetComponent <PriceChanger>();
     day++;
     price.NewsPriceUpdate();
     for (int i = 0; i < 11; i++)
     {
         if (day % 63 == 0)
         {
             price.QuarterlyPriceUpdate();
         }
     }
     lines.doo();
 }