public void Discard(Card card)
 {
     stash.AddToStash(card.code);
     handCards.Remove(card);
     Destroy(card.gameObject);
     ReorganizeCards();
 }