static void Main()
        {
            statsWarLog     = new StatsWarLog();
            statsCurrentWar = new StatsCurrentWar();

            // Tests
            TestWarLogOutputInHtml();

            TestStatsCurrentWar();

            // Exit console application
            Console.WriteLine("Press enter to exit...");
            Console.ReadLine();
        }
Beispiel #2
0
 private void InitApp()
 {
     statsWarLog = new StatsWarLog();
     SetCaptionText();
 }