Exemplo n.º 1
0
        // This form shows exit splash screen
        private void showExitSplashScreen(object sender, EventArgs e)
        {
            RPSsplashscreenForm exitsplash = new RPSsplashscreenForm();

            if (game.ComputerScore > game.PlayerScore)
            {
            }
        }
Exemplo n.º 2
0
        private void showSplashScreen(object sender, EventArgs e)
        {
            RPSsplashscreenForm RPSsplashscreen = new RPSsplashscreenForm();

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