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