Example #1
0
        public void NextRound()
        {
            if ((currentRound + 1) <= arrNumRound.Length)
            {
                currentRound++;

                if ((currentPlayer + 1) > arrNumPlayer.Length)
                {
                    currentPlayer = 0;
                }
                else
                {
                    currentPlayer++;
                }

                NewRound();
            }
            else
            {
                IntroForm form = new IntroForm();
                form.Show();
            }
        }