Example #1
0
        public async Task postFlopBetting(Pot pot)
        {
            Seat ss = this.sb.player.isInHand() ? this.sb : table.getNearestLeftSeatInHand(this.sb);

            await this.bettingRound(ss, pot);
        }
Example #2
0
 public void setRight(Seat s)
 {
     this.right = s;
 }
Example #3
0
        ///// PLAYER BETTING /////

        public async Task preFlopBetting(Pot pot)
        {
            Seat ss = this.fp;

            await this.bettingRound(ss, pot);
        }
Example #4
0
        ///// GETTERS & SETTERS /////

        public void setLeft(Seat s)
        {
            this.left = s;
        }