Esempio n. 1
0
 public HandLogic(IList <InternalPlayer> players, int handNumber, int smallBlind)
 {
     this.handNumber     = handNumber;
     this.smallBlind     = smallBlind;
     this.players        = players;
     this.deck           = new Deck();
     this.communityCards = new List <Card>(5);
     this.bettingLogic   = new BettingLogic(this.players, smallBlind);
 }
 public HandLogic(IList<InternalPlayer> players, int handNumber, int smallBlind)
 {
     this.handNumber = handNumber;
     this.smallBlind = smallBlind;
     this.players = players;
     this.deck = new Deck();
     this.communityCards = new List<Card>(5);
     this.bettingLogic = new BettingLogic(this.players, smallBlind);
 }