Beispiel #1
0
 /// <summary>
 ///     <para>Initializes an instance of the <see cref="TexasHoldemServer"/> class.</para>
 /// </summary>
 /// <param name="helper">The helper which provides the input/output operations
 /// </param>
 public TexasHoldemServer(IEngineHelper helper)
 {
     this.helper = helper;
 }
Beispiel #2
0
 /// <summary>
 ///     <para>Initializes an instance of the <see cref="SevenCardStudServer"/> class.</para>
 /// </summary>
 /// <param name="helper">The helper which provides the input/output operations
 /// </param>
 public SevenCardStudServer(IEngineHelper helper)
 {
     this.helper = helper;
     this.helper.SetSafePlayerCards = setSafePlayerCards;
 }
Beispiel #3
0
 /// <summary>
 ///     <para>Initializes an instance of the <see cref="OmahaHoldemServer"/> class.</para>
 /// </summary>
 /// <param name="helper">The helper which provides the input/output operations
 /// </param>
 public OmahaHoldemServer(IEngineHelper helper)
 {
     this.helper = helper;
 }