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