Ejemplo n.º 1
0
        public override void ReadXML(XElement ele, ElderScrollsPlugin master)
        {
            XElement subEle;

            if (ele.TryPathTo("Static", false, out subEle))
            {
                if (Static == null)
                {
                    Static = new RecordReference();
                }

                Static.ReadXML(subEle, master);
            }
            if (ele.TryPathTo("Placements", false, out subEle))
            {
                if (Placements == null)
                {
                    Placements = new StaticCollectionPartData();
                }

                Placements.ReadXML(subEle, master);
            }
        }
Ejemplo n.º 2
0
 public StaticCollectionPart(RecordReference Static, StaticCollectionPartData Placements)
 {
     this.Static     = Static;
     this.Placements = Placements;
 }
Ejemplo n.º 3
0
 public StaticCollectionPart()
 {
     Static     = new RecordReference();
     Placements = new StaticCollectionPartData();
 }