Example #1
0
 public Bottle(BottleType type, int inxPos, int amount)
 {
     this.Type         = type;
     this.SlotPosIndex = inxPos;
     this.AmountLeft   = amount;
 }
Example #2
0
 private void InsertBottle(BottleType type, int inxPos, int amount)
 {
     _bottles.Add(new Bottle(type, inxPos, amount));
 }