Ejemplo n.º 1
0
 public void addElemento(Carta card)
 {
     if (elementos.Count < MAX_ELEMENTOS){
         elementos.Add(card);
         string esn = "es"+elementos.Count.ToString();
         card.dibujar(FindChild(esn),story.getEstado());
     }
 }