public override bool Equals(System.Object obj)
        {
            XmlUserVariableList l = obj as XmlUserVariableList;

            if ((object)l == null)
            {
                return(false);
            }

            return(this.Equals(l));
        }
 public bool Equals(XmlUserVariableList l)
 {
     return(this.UserVariables.Equals(l.UserVariables));
 }
 internal override void LoadFromXml(XElement xRoot)
 {
     XmlSpriteReference = new XmlSpriteReference(xRoot.Element(XmlConstants.Object));
     VariableList       = new XmlUserVariableList(xRoot.Element(XmlConstants.List));
 }
 public XmlObjectVariableEntry()
 {
     VariableList = new XmlUserVariableList();
 }
 public bool Equals(XmlUserVariableList l)
 {
     return this.UserVariables.Equals(l.UserVariables);
 }
 internal override void LoadFromXml(XElement xRoot)
 {
     XmlSpriteReference = new XmlSpriteReference(xRoot.Element(XmlConstants.Object));
     VariableList = new XmlUserVariableList(xRoot.Element(XmlConstants.List));
 }
 public XmlObjectVariableEntry() { VariableList = new XmlUserVariableList(); }