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
746 B
23 lines
746 B
namespace CoreLibrary.Events
|
|
{
|
|
/// <summary>
|
|
/// Classe contenant les arguments passées en paramètre lors de l'événement DemanderJeton.
|
|
/// </summary>
|
|
public class DemanderJetonEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// L'indice du code où le jeton va être ajouté.
|
|
/// </summary>
|
|
public int Indice { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Initialise une nouvelle instance de la classe <see cref="DemanderJetonEventArgs"/> avec l'indice spécifié.
|
|
/// </summary>
|
|
/// <param name="joueur">L'indice du jeton qui va été ajouté.</param>
|
|
public DemanderJetonEventArgs(int indice)
|
|
{
|
|
Indice = indice;
|
|
}
|
|
}
|
|
}
|