Beispiel #1
0
 /// <summary>
 /// Checks if need to call the <see cref="IFiveCardClientHelper.NotifyDrawingRoundStarted"/>
 /// </summary>
 private void checkDrawingStarted()
 {
     // test to see if need to call
     if (drawingRoundStarted)
     {
         // make the call
         fiveCardConcreteClient.NotifyDrawingRoundStarted();
         // mark as called
         drawingRoundStarted = false;
     }
 }
Beispiel #2
0
 public void NotifyDrawingRoundStarted()
 {
     helper.NotifyDrawingRoundStarted();
 }
Beispiel #3
0
 /// <summary>
 /// Called by the client when a drawing round starts
 /// </summary>
 public void NotifyDrawingRoundStarted()
 {
     fiveCardHelper.NotifyDrawingRoundStarted();
 }