Пример #1
0
 public int CurrentRoundNumber()
 {
     return(Hand.CurrentRoundNumber());
 }
Пример #2
0
 public PokerGame()   // For testing purpose only
 {
     Hand = new Hand(Players);
 }
Пример #3
0
 private bool IsHandInProgress()
 {
     return(!Hand.IsFinished());
 }