public StatisticsMgr() { WinStreak = 0; LosingStreak = 0; Profit = 0; LastFewCards = new List <Card>(); WinSequences = new List <int>(); MapSequences = new Dictionary <int, int>(); TensAtWins = new Dictionary <int, int>(); TensAtLosses = new Dictionary <int, int>(); Features = new FeaturesContainer(); }
private static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); FormsContainer.CreateForms(); FeaturesContainer.CreateFeatures(); FeaturesContainer.DataContainer.Init(); DependencyManager.Init(); Application.Run(FormsContainer.MainForm); }