Catrobat.IDE.Core.Xml.XmlObjects.Scripts.XmlScript.CreateCommonXML C# (CSharp) Méthode

CreateCommonXML() protected méthode

protected CreateCommonXML ( System.Xml.Linq.XElement xRoot ) : void
xRoot System.Xml.Linq.XElement
Résultat void
        protected void CreateCommonXML(XElement xRoot)
        {
            if (Bricks != null)
            {
                XmlParserTempProjectHelper.Script = this;

                xRoot.Add(Bricks.CreateXml());
            }
        }
    }