Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FahClientLog"/> class.
 /// </summary>
 /// <param name="runDataAggregator">The <see cref="RunDataAggregator"/> that will be used to generate <see cref="ClientRunData"/>, <see cref="SlotRunData"/>, and <see cref="UnitRunData"/> objects.</param>
 protected FahClientLog(RunDataAggregator runDataAggregator)
     : base(runDataAggregator ?? FahClientRunDataAggregator.Instance)
 {
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LegacyLog"/> class.
 /// </summary>
 /// <param name="runDataAggregator">The <see cref="RunDataAggregator"/> that will be used to generate <see cref="ClientRunData"/>, <see cref="SlotRunData"/>, and <see cref="UnitRunData"/> objects.</param>
 protected LegacyLog(RunDataAggregator runDataAggregator)
     : base(runDataAggregator ?? LegacyRunDataAggregator.Instance)
 {
     _unitIndexData.Initialize();
 }