Beispiel #1
0
 /// <inheritdoc />
 public void NewRound()
 {
     foreach (var playedCard in PlayedList)
     {
         GraveyardList.Add(playedCard);
     }
     PlayedList = new List <Type>(DeckSize);
 }
Beispiel #2
0
 public bool AddToGraveyard(Type cardType)
 {
     GraveyardList.Add(cardType);
     return(true);
 }