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.
23 lines
674 B
23 lines
674 B
using CoreLibrary.Core;
|
|
|
|
namespace CoreLibrary.Evenements
|
|
{
|
|
public class PartieNouveauTourEventArgs : EventArgs
|
|
{
|
|
public int Tour { get; private init; }
|
|
public string Nom { get; private init; }
|
|
public Plateau Plateau { get; private init; }
|
|
public Code Code { get; private init; }
|
|
public bool EstJoueur { get; private init; }
|
|
|
|
public PartieNouveauTourEventArgs(int tour, string nom, Plateau plateau, Code code, bool estJoueur)
|
|
{
|
|
Tour = tour;
|
|
Nom = nom;
|
|
Plateau = plateau;
|
|
Code = code;
|
|
EstJoueur = estJoueur;
|
|
}
|
|
}
|
|
}
|