コード例 #1
0
ファイル: GameUI.cs プロジェクト: Georgia04/WindowsFormsPartB
        // This form shows exit splash screen
        private void showExitSplashScreen(object sender, EventArgs e)
        {
            RPSsplashscreenForm exitsplash = new RPSsplashscreenForm();

            if (game.ComputerScore > game.PlayerScore)
            {
            }
        }
コード例 #2
0
ファイル: GameUI.cs プロジェクト: Georgia04/WindowsFormsPartB
        private void showSplashScreen(object sender, EventArgs e)
        {
            RPSsplashscreenForm RPSsplashscreen = new RPSsplashscreenForm();

            RPSsplashscreen.ShowDialog();
            System.Threading.Thread.Sleep(2000);
            RPSsplashscreen.Close();
        }