public void BreakDown()
 {
     drawThisCard = null;
     discardedCardsThisTurn = null;
     cardClickedArray = null;
     gridLayout = null;
     handViewer = null;
 }
 public void initHandViewer(Hero currentPlayer)
 {
     if (currentPlayer != null)
     {
         handViewer = new ViewHand(currentPlayer.getPlayerHand(), this);
     }
 }