Example #1
0
    public void CrearTorrePrueba()       // Debuggin Purposes
    {
        TorreBasica torrecitaZero = new TorreBasica();

        Debug.Log(torrecitaZero.velocidad);
        Debug.Log(torrecitaZero.danio);
    }
Example #2
0
 public void AssignBasicTower2Selection()
 {
     //listaDeTorresBasicas.Insert(towerIndex, new TorreBasica(10, 10, 10, 10));
     if (torres[towerIndex] == null)
     {
         torres[towerIndex] = new TorreBasica();
         Debug.Log("Setting Tower to Slot: " + towerIndex);
     }
 }