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