Example #1
0
 public Game(GameInfo info, BetsName betsName)
 {
     this.Info = info;
     this.BetsName = betsName;
     this.Coefficients = new Dictionary<CoefType, ICoefficient>();
 }
Example #2
0
 public Game(GameInfo info, Dictionary<CoefType, ICoefficient> coefs, BetsName betsName = default(BetsName))
 {
     this.Info = info;
     this.Coefficients = coefs;
     this.BetsName = betsName;
 }