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
473 B
17 lines
473 B
using CoreLibrary.Joueurs;
|
|
|
|
namespace CoreLibrary.Evenements
|
|
{
|
|
public class PartiePartieTermineeEventArgs : EventArgs
|
|
{
|
|
public IReadOnlyList<string> Gagnants { get; private init; }
|
|
public IReadOnlyList<string> Perdants { get; private init; }
|
|
|
|
public PartiePartieTermineeEventArgs(IReadOnlyList<string> gagnants, IReadOnlyList<string> perdants)
|
|
{
|
|
Gagnants = gagnants;
|
|
Perdants = perdants;
|
|
}
|
|
}
|
|
}
|