public void Add(int id, string name = null)
        {
            SpellEntry se = new SpellEntry(id, name);

            Spells.Add(se);
            SpellIds.Add(id);
        }
Exemple #2
0
 public void Add(int id, string name = null)
 {
     SpellEntry se = new SpellEntry(id, name);
     Spells.Add( se );
     SpellIds.Add( id);
 }