Esempio n. 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);
        }
Esempio n. 2
0
 public void setRight(Seat s)
 {
     this.right = s;
 }
Esempio n. 3
0
        ///// PLAYER BETTING /////

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

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

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