InstantReactionLoader.loadInstantReactionReactants C# (CSharp) Method

loadInstantReactionReactants() private method

private loadInstantReactionReactants ( XmlNode node, InstantReaction, ir ) : bool
node XmlNode
ir InstantReaction,
return bool
    private bool loadInstantReactionReactants(XmlNode node, InstantReaction ir)
    {
        foreach (XmlNode attr in node)
          if (attr.Name == "reactant")
        loadInstantReactionReactant(attr, ir);
        return true;
    }