示例#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());
 }