private List <SpellData> GetSpellByType(SpellData.SpellType type) { List <SpellData> spellsToReturn = new List <SpellData>(); foreach (SpellData spell in spells) { if (spell.EnumSpellType == type) { spellsToReturn.Add(spell); } } return(spellsToReturn); }
public void DisplaySpells(SpellData.SpellType type) { DisplayOtherList(); DisplayListOfSpell(GetSpellByType(type)); }