Exemplo n.º 1
0
 public override void Fold(Pot pot)
 {
     betting = false;
     if (pot.GetCallCost(this) > 0){
         pot.Fold(this);
     } else {
         pot.Call(this);
     }
 }
Exemplo n.º 2
0
 public override void Fold(Pot pot)
 {
     if (pot.GetCallCost(this) > 0){
         QueueAction(new NoBetAction(actor, "I fold."), true);
         pot.Fold(this);
         busy = true;
     } else {
         Call(pot);
     }
 }