/// <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); }
/// <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); }