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