public ClientPrefs(FlavourGroup group = FlavourGroup.None, Taste taste = Taste.None, Strength strength = Strength.None)
 {
     this.group    = group;
     this.taste    = taste;
     this.strength = strength;
 }
示例#2
0
 public Flavour(FlavourGroup group, Taste taste)
 {
     this.group = group;
     this.taste = taste;
 }