namespace CoreLibrary
{
///
/// Représente un joueur.
///
public class Joueur
{
///
/// Obtient le nom du joueur.
///
public string Nom { get; private init; }
///
/// Obtient le plateau du joueur.
///
public Plateau Plateau { get; private init; }
///
/// Crée une nouvelle instance de joueur avec un nom et un plateau spécifié.
///
/// Le nom du joueur
/// Le plateau du joueur
public Joueur(string nom, Plateau plateau)
{
Nom = nom;
Plateau = plateau;
}
}
}