Example #1
0
 /// <summary>
 /// Called by the client when a round starts.
 /// </summary>
 /// <param name="dealer">The current round dealer</param>
 /// <param name="potAmount">The starting amount of money in the pot</param>
 public void NotifyDealerAndPotAmount(Player dealer, int potAmount)
 {
     concreteClient.NotifyDealerAndPotAmount(dealer, potAmount);
 }
Example #2
0
 /// <summary>
 /// Called by the client when a round starts.
 /// </summary>
 /// <param name="dealer">The current round dealer</param>
 /// <param name="potAmount">The starting amount of money in the pot</param>
 public virtual void NotifyDealerAndPotAmount(Player dealer, int potAmount)
 {
     helper.NotifyDealerAndPotAmount(dealer, potAmount);
 }