Пример #1
0
 public Beard(Beard beard)
     : base(beard)
 {
     this.color = beard.color;
     this.type = beard.type;
 }
Пример #2
0
 public Beard(int id, Text description)
     : base(id, null, description)
 {
     this.color = new Color();
     this.type = TypeBeard.None;
 }
Пример #3
0
 public Beard(int id, Texture2D texture, Text description, Color color, TypeBeard type)
     : base(id, texture, description)
 {
     this.color = color;
     this.type = type;
 }
Пример #4
0
 // Constructeur
 public Beard()
     : base()
 {
     this.color = new Color();
     this.type = TypeBeard.None;
 }