Esempio n. 1
0
 /// <summary>
 /// Called by the client when the blind open is made.
 /// </summary>
 /// <param name="opened">The player which blind opens</param>
 /// <param name="openAmount">The player open amount, may be 0</param>
 public void NotifyBlindOpen(Player opened, int openAmount)
 {
     concreteClient.NotifyBlindOpen(opened, openAmount);
 }
Esempio n. 2
0
 /// <summary>
 /// Called by the client when the blind open is made.
 /// </summary>
 /// <param name="opened">The player which blind opens</param>
 /// <param name="openAmount">The player open amount, may be 0</param>
 public virtual void NotifyBlindOpen(Player opened, int openAmount)
 {
     helper.NotifyBlindOpen(opened, openAmount);
 }