Exemplo n.º 1
0
 public int CurrentRoundNumber()
 {
     return(Hand.CurrentRoundNumber());
 }
Exemplo n.º 2
0
 public PokerGame()   // For testing purpose only
 {
     Hand = new Hand(Players);
 }
Exemplo n.º 3
0
 private bool IsHandInProgress()
 {
     return(!Hand.IsFinished());
 }