public void elegirAccion()
 {
     if (Input.GetKeyDown(KeyCode.W))
     {
         catapult.Fire();
     }
     if (Input.GetKeyDown(KeyCode.Space))
     {
         rayBeam.Fire();
     }
 }
 public void AttackWithRay()
 {
     if (turnsPassed < 3)
     {
         return;
     }
     turnsPassed = 0;
     rayBeam.Fire();
     onTurnFinished();
     Debug.Log("Used Attack with ray");
 }
 public void AttackWithRay()
 {
     Debug.Log("Dispare el RASHOOO!");
     rayBeam.Fire();
 }
 public void AttackWithRay()
 {
     Debug.Log("Used Attack with ray");
     rayBeam.Fire();
 }
 public void AttackWithRay()
 {
     rayBeam.Fire();
     onTurnFinished();
     Debug.Log("Used Attack with ray");
 }