public Card(Card c) { this.cout = c.cout; this.couleur = c.couleur; this.nom = c.nom; this.descriptionEffet = c.descriptionEffet; this.valeurActivation = new List <int>(c.valeurActivation); ID = c.ID; }
public Card(int cout, COULEUR couleur, string nom, string descriptionEffet, List <int> valeurActivation, CARD_ID id) { this.cout = cout; this.couleur = couleur; this.nom = nom; this.descriptionEffet = descriptionEffet; this.valeurActivation = valeurActivation; ID = id; }
public Card(Card c) { this.cout = c.cout; this.couleur = c.couleur; this.nom = c.nom; this.descriptionEffet = c.descriptionEffet; this.valeurActivation = new List <int>(c.valeurActivation); ID = c.ID; this.cb = new CardBox(); this.cb.ImageLocation = c.cb.ImageLocation; this.cb.SizeMode = PictureBoxSizeMode.StretchImage; this.cb.Size = new Size(80, 100); }