public Beard(Beard beard) : base(beard) { this.color = beard.color; this.type = beard.type; }
public Beard(int id, Text description) : base(id, null, description) { this.color = new Color(); this.type = TypeBeard.None; }
public Beard(int id, Texture2D texture, Text description, Color color, TypeBeard type) : base(id, texture, description) { this.color = color; this.type = type; }
// Constructeur public Beard() : base() { this.color = new Color(); this.type = TypeBeard.None; }