Example #1
0
        public void createNewGame()
        {
            Random rand = new Random();

            _grille.newGrille();
            joueur_1.Tour = (rand.Next(0, 2) == 1);
            joueur_2.Tour = !joueur_1.Tour;
            if (joueur_2.Tour)
            {
                Play();
            }
        }