Beispiel #1
0
 /// <summary>
 /// Checks if need to call the <see cref="IClientHelper.NotifyBetRoundStarted"/>
 /// </summary>
 private void checkBettingStarted()
 {
     // test to see if need to call
     if (betRoundStarting)
     {
         // make the call
         concreteClient.NotifyBetRoundStarted();
         // mark as called
         betRoundStarting = false;
     }
 }
Beispiel #2
0
 /// <summary>
 /// Called before a betting round starts.
 /// </summary>
 public virtual void NotifyBetRoundStarted()
 {
     helper.NotifyBetRoundStarted();
 }