Exemple #1
0
    private void ParseXML(string file)
    {
        XMLNode root = new XMLNode(null); // No parent

        root.Parse(file);

        #region DEBUG
        if (BigBoss.Debug.Flag(DebugManager.DebugFlag.XML_Print) && BigBoss.Debug.logging(Logs.XML))
        {
            BigBoss.Debug.w(Logs.XML, root.Print());
        }
        #endregion

        ParseXML(root);
    }