using CoreLibrary.Joueurs; namespace CoreLibrary.Evenements { public class PartieDemanderJoueurEventArgs : EventArgs { public int Indice { get; private init; } public Joueur JoueurDemande { get; private init; } public PartieDemanderJoueurEventArgs(int indice, Joueur joueurDemande) { Indice = indice; JoueurDemande = joueurDemande; } } }