Ejemplo n.º 1
0
		public void Lose(CardCollection cards)
		{
			cards.LostBy(this);
			if (CardsLost != null)
			{
				CardsLostEventArgs clea = new CardsLostEventArgs(cards);
				CardsLost(this, clea);
			}
		}