private string GetSpellCardNameAsStringWithoutSpaces(SpellCardName spellCardName)
 {
     return(spellCardName.ToString().Replace("_", " "));
 }
 public void WarnSpellCard(SpellCardName spellCardName)
 {
     HideOrShowSpellCardInterface(true);
     currentSpellCardNameText.text = GetSpellCardNameAsStringWithoutSpaces(spellCardName);
 }