Ejemplo n.º 1
0
 public void SelectCell(int x, int y)
 {
     if (winLoseController.CheckIfPlayable())
     {
         isc.SelectCell(x, y);
         CheckWinLose();
     }
 }
Ejemplo n.º 2
0
    private void Update()
    {
        if (controller.CheckIfPlayable())
        {
            miliSec += Time.deltaTime;
            Debug.Log("Updated " + canRun + " " + miliSec);

            UpdateText();
        }
    }