Exemplo n.º 1
0
        /// <summary>
        /// The constructor initializes the configuration, log writer and the instance that makes and formats the combat report
        /// </summary>
        public CombatLogExporterManager()
        {
            logWriter = new LogFileWriter();

            if (Main.settings.reportToolTip)
            {
                combatReporting = new TooltipReporting();
            }
            else
            {
                combatReporting = new BasicReporting();
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// The constructor initializes the configuration, log writer and the instance that makes and formats the combat report
        /// </summary>
        public CombatLogExporterManager()
        {
            configuration = new FileReaderConfiguration();
            logWriter     = new LogFileWriter();

            if (configuration.TooltipReporting)
            {
                combatReporting = new TooltipReporting();
            }
            else
            {
                combatReporting = new BasicReporting();
            }
        }