Example #1
0
 public void PutBomb(int x, int y, BombInfo info)
 {
     Debug.Log("PutBomb");
     if (CanPutBomb(x, y))
     {
         model.PutBomb(x, y);
         view.GenerateBomb(x, y, info.timer, info);
         StartCoroutine(ExplosionBomb(x, y, info.range, info.timer));
     }
 }