コード例 #1
0
ファイル: Program.cs プロジェクト: DouglasHeriot/Uno
        /// <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++;
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: mcswaip1/Uno
        /// <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++;
        }