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.
17 lines
425 B
17 lines
425 B
using CoreLibrary.Joueurs;
|
|
|
|
namespace CoreLibrary.Events
|
|
{
|
|
public class DemanderNomEventArgs : EventArgs
|
|
{
|
|
public int Indice { get; private set; }
|
|
public JoueurBuilder JoueurBuilder { get; private set; }
|
|
|
|
public DemanderNomEventArgs(int indice, JoueurBuilder joueurBuilder)
|
|
{
|
|
Indice = indice;
|
|
JoueurBuilder = joueurBuilder;
|
|
}
|
|
}
|
|
}
|