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.
22 lines
588 B
22 lines
588 B
using CoreLibrary.Core;
|
|
using CoreLibrary.Joueurs;
|
|
|
|
namespace CoreLibrary.Evenements
|
|
{
|
|
public class PartieNouveauTourEventArgs : EventArgs
|
|
{
|
|
public int Tour { get; private init; }
|
|
public string Joueur { get; private init; }
|
|
public Plateau Plateau { get; private init; }
|
|
public Code Code { get; private init; }
|
|
|
|
public PartieNouveauTourEventArgs(int tour, string joueur, Plateau plateau, Code code)
|
|
{
|
|
Tour = tour;
|
|
Joueur = joueur;
|
|
Plateau = plateau;
|
|
Code = code;
|
|
}
|
|
}
|
|
}
|