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.
25 lines
637 B
25 lines
637 B
using System;
|
|
using System.Collections.Generic;
|
|
using OrderStacks.model.card;
|
|
|
|
namespace OrderStacks.model.@event
|
|
{
|
|
public class PlayerChangedEventArgs : EventArgs
|
|
{
|
|
|
|
public string Pseudo;
|
|
public List<Card> NewCurrentHand;
|
|
|
|
/**
|
|
* <param name="newCurrentHand">Nouvelle liste de carte active</param>
|
|
* <param name="pseudo">Pseudo du nouvelle utilisateur actif</param>
|
|
* Constructeur
|
|
*/
|
|
public PlayerChangedEventArgs(List<Card> newCurrentHand, string pseudo)
|
|
{
|
|
NewCurrentHand = newCurrentHand;
|
|
Pseudo = pseudo;
|
|
}
|
|
}
|
|
}
|