Example #1
0
 public Cost(Currencies.Coin coinCost, Currencies.Potion potionCost)
     : this(coinCost)
 {
     _Cost.Potion = potionCost;
 }
Example #2
0
 public Cost(Currencies.Coin coinCost, Currencies.Potion potionCost, Boolean special, Boolean canOverpay)
     : this(coinCost, potionCost)
 {
     _Special    = special;
     _CanOverpay = canOverpay;
 }
Example #3
0
 public Cost(Currencies.Potion potionCost)
 {
     _Cost.Potion = potionCost;
 }