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.
|
using CoreLibrary;
|
|
using CoreLibrary.Events;
|
|
|
|
void LaPartieDemarre(object sender, DebutPartieEventArgs evenement)
|
|
{
|
|
Console.WriteLine("La partie commence");
|
|
}
|
|
|
|
|
|
Partie maPartie = new Partie(new ReglesClassiques());
|
|
maPartie.debutPartie += LaPartieDemarre;
|
|
|
|
maPartie.Jouer();
|