예제 #1
0
 /// <summary>
 /// Called by the client to notify the current hand which is played
 /// </summary>
 /// <param name="currentHand">The current hand</param>
 public void NotifyCurrentHand(int currentHand)
 {
     concreteClient.NotifyCurrentHand(currentHand);
 }
예제 #2
0
 /// <summary>
 /// Called by the client to notify the current hand which is played
 /// </summary>
 /// <param name="currentHand">The current hand</param>
 public virtual void NotifyCurrentHand(int currentHand)
 {
     helper.NotifyCurrentHand(currentHand);
 }