Ejemplo n.º 1
0
 public void WinChips(Pot pot)
 {
     ChipCount += pot.Clear();
 }
Ejemplo n.º 2
0
 public void AddToPot(int amount, Pot pot)
 {
     ChipCount -= amount;
     CurrentBet = amount;
     pot.Bet(amount);
 }