/// <summary> /// Checks if need to call the <see cref="IClientHelper.NotifyBetRoundStarted"/> /// </summary> private void checkBettingStarted() { // test to see if need to call if (betRoundStarting) { // make the call concreteClient.NotifyBetRoundStarted(); // mark as called betRoundStarting = false; } }
/// <summary> /// Called before a betting round starts. /// </summary> public virtual void NotifyBetRoundStarted() { helper.NotifyBetRoundStarted(); }