Exemplo n.º 1
0
 internal void AddChild(SpellNode child)
 {
     if (_children == null)
     {
         _children = new List <SpellNode>();
     }
     _children.Add(child);
     child.InsertSpell(this);
 }
Exemplo n.º 2
0
 internal void AddChild(SpellNode child)
 {
     if (_children == null)
         _children = new List<SpellNode>();
     _children.Add(child);
     child.InsertSpell(this);
 }