/// <summary>
 /// Default Constructor for the Type Mapper.
 /// </summary>
 /// <param name="faction">Reference to the Faction</param>
 /// <param name="interop">Related Interop</param>
 public ByCasteStatisticsInterop(Faction faction, FactoryInterop interop) : this(faction, interop, null)
 {
 }
 /// <summary>
 /// Wird beim Initialisieren der Factory und zur Übergabe des Interop-Objektes aufgerufen.
 /// </summary>
 /// <param name="interop"></param>
 public abstract void Init(FactoryInterop interop);
Exemple #3
0
 /// <summary>
 /// Specialized Constructor with an additional Filter Type Definition.
 /// </summary>
 /// <param name="faction">Reference to the Faction</param>
 /// <param name="interop">Related Interop</param>
 /// <param name="filterType">Required Base Type</param>
 public TotalStatisticsInterop(Faction faction, FactoryInterop interop, Type filterType) : base(faction, interop, filterType)
 {
 }
Exemple #4
0
 /// <summary>
 /// Wird beim Initialisieren der Factory und zur Übergabe des Interop-Objektes aufgerufen.
 /// </summary>
 /// <param name="interop"></param>
 public abstract void Init(FactoryInterop interop);
Exemple #5
0
 /// <summary>
 /// Default Constructor for the Type Mapper.
 /// </summary>
 /// <param name="faction">Reference to the Faction</param>
 /// <param name="interop">Related Interop</param>
 public TotalStatisticsInterop(Faction faction, FactoryInterop interop) : this(faction, interop, null)
 {
 }