Example #1
0
 public Style(string name, int age, string country, string shop, EnvironFr enfr, string style, int coeff, int chance, int qual, int pf) : base(name, age, country, shop, enfr)
 {
     St = style;
     dataStud.NatMaterial   = coeff;
     dataStud.SynthMaterial = chance;
     Quality          = qual;
     PositiveFeedback = pf;
 }
Example #2
0
 public Characteristics(string name, int cost, string country, string shop, EnvironFr enfr) : base(name, cost, country)
 {
     Shop      = shop;
     EnvironFr = enfr;
 }
Example #3
0
 public Characteristics() : base()
 {
     Shop      = "DomMebeli";
     EnvironFr = EnvironFr.Four;
 }