You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mastermind/Sources/ConsoleApp/Program.cs

21 lines
536 B

using ConsoleApp;
using CoreLibrary;
Console.OutputEncoding = System.Text.Encoding.UTF8;
Utils.DessinerTitre();
Partie maPartie = new Partie(new ReglesClassiques());
maPartie.DemanderJoueur += Utils.DemanderJoueur;
maPartie.DebutPartie += Utils.CommencerLaPartie;
maPartie.NouveauTour += Utils.NouveauTour;
maPartie.DemanderJeton += Utils.DemanderJeton;
maPartie.AjouterJeton += Utils.AjouterJeton;
maPartie.AjouterCode += Utils.AjouterCode;
maPartie.PartieTerminee += Utils.PartieTerminee;
maPartie.Jouer();