Ejemplo n.º 1
0
        private void ganoJugador(int j)
        {
            string jug;

            if (j == 1)
            {
                jug = "JUGADOR 1";
            }
            else
            {
                jug = "JUGADOR 2";
            }
            MessageBox.Show(jug + "\n H A S    G A N A D O", "¡G A N A D O R! ¡G A N A D O R!", MessageBoxButtons.OK, MessageBoxIcon.Stop);
            FormInicio fInicio = new FormInicio();

            this.Close();
            fInicio.Show();
        }