Beispiel #1
0
 public void NotifyPlayerDraws(PokerEngine.Player player, int drawCount)
 {
     helper.NotifyPlayerDraws(player, drawCount);
 }
Beispiel #2
0
 /// <summary>
 /// Called by the client to notify how many cards were drawn by the player
 /// </summary>
 /// <param name="player">The drawing players</param>
 /// <param name="drawCount">The amount of cards drawn. Can be 0</param>
 public void NotifyPlayerDraws(Player player, int drawCount)
 {
     fiveCardHelper.NotifyPlayerDraws(player, drawCount);
 }
Beispiel #3
0
 /// <summary>
 /// Called by the client to notify how many cards were drawn by the player
 /// </summary>
 /// <param name="player">The drawing players</param>
 /// <param name="drawCount">The amount of cards drawn. Can be 0</param>
 public virtual void NotifyPlayerDraws(Player player, int drawCount)
 {
     helper.NotifyPlayerDraws(player, drawCount);
 }
Beispiel #4
0
 /// <summary>
 /// Called by the client to notify how many cards were drawn by the player
 /// </summary>
 /// <param name="player">The drawing players</param>
 /// <param name="drawCount">The amount of cards drawn. Can be 0</param>
 public void NotifyPlayerDraws(Player player, int drawCount)
 {
     checkDrawingStarted();
     fiveCardConcreteClient.NotifyPlayerDraws(player, drawCount);
 }