/// <summary> /// Crete and show a new sorted players view, for the end of a game /// </summary> /// <param name="game"></param> public static void NewSortedPlayersView(Game game) { // Create a new form, then show it SortedPlayersView view = new SortedPlayersView(game); view.Show(); // Count this new window windowCount++; }
/// <summary> /// Crete and show a new sorted players view, for the end of a game /// </summary> /// <param name="game"></param> static public void NewSortedPlayersView(Game game) { // Create a new form, then show it SortedPlayersView view = new SortedPlayersView(game); view.Show(); // Count this new window windowCount++; }