Example #1
0
 public Tshirt(Tshirt tshirt)
     : base(tshirt)
 {
     this.color = tshirt.color;
     this.type = tshirt.type;
 }
Example #2
0
 public Tshirt(int id, Text description)
     : base(id, null, description)
 {
     this.color = new Color();
     this.type = TypeTshirt.None;
 }
Example #3
0
 public Tshirt(int id, Texture2D texture, Text description, Color color, TypeTshirt type)
     : base(id, texture, description)
 {
     this.color = color;
     this.type = type;
 }
Example #4
0
 // Constructeur
 public Tshirt()
     : base()
 {
     this.color = new Color();
     this.type = TypeTshirt.None;
 }