public void GoToDeckPanel()
 {
     IsInInvestigatorPanel = false;
     investigatorSelector.CurrentInvestigator = investigatorSelector.GetComponentInChildren <InvNCardComponent>(); //Select the first InvCard
     GetComponent <PanelTabManager>().PanelAnim(1);
     viewCardManager.ShowDeckCards(investigatorSelector.CurrentInvestigator);
     SettingButtons(true);
 }
 public void InvestigatorSelect(InvNCardComponent invCard)
 {
     audioComponent.PlayHover();
     investigatorSelector.CurrentInvestigator = invCard;
     viewCardManager.ShowDeckCards(invCard);
 }