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/CoreLibrary/IRegles.cs

26 lines
541 B

namespace CoreLibrary
{
public interface IRegles
{
string Nom { get; }
int TourMaximum { get; }
int TailleCodeMaximum { get; }
int NbJoueurs { get; }
int NbJoueursMaximum { get; }
void AjouterJoueur(string nom);
Joueur JoueurCourant();
void PasserLaMain();
Code GenererCode();
void CommencerLaPartie();
bool EstTerminee();
IEnumerable<Joueur> Gagnants();
IEnumerable<Joueur> Perdants();
}
}