public async Task postFlopBetting(Pot pot) { Seat ss = this.sb.player.isInHand() ? this.sb : table.getNearestLeftSeatInHand(this.sb); await this.bettingRound(ss, pot); }
public void setRight(Seat s) { this.right = s; }
///// PLAYER BETTING ///// public async Task preFlopBetting(Pot pot) { Seat ss = this.fp; await this.bettingRound(ss, pot); }
///// GETTERS & SETTERS ///// public void setLeft(Seat s) { this.left = s; }