public void DeChooseInvestigatorCard(InvNCardComponent card)
 {
     if (PanelManager.IsInInvestigatorPanel)
     {
         audioComponent.PlayClick();
         if (GameData.Instance.IsNotFirstScenario)
         {
             card.CallRetireModal();
         }
         else
         {
             investigatorSelector.RemoveInvestigator(card);
         }
     }
     check.CheckingAllReady();
 }
 public void InvestigatorSelect(InvNCardComponent invCard)
 {
     audioComponent.PlayHover();
     investigatorSelector.CurrentInvestigator = invCard;
     viewCardManager.ShowDeckCards(invCard);
 }