Catrobat.IDE.Core.Xml.XmlObjects.XmlSprite.Equals C# (CSharp) Method

Equals() public method

public Equals ( XmlSprite s ) : bool
s XmlSprite
return bool
        public bool Equals(XmlSprite s)
        {
            return this.Name.Equals(s.Name) && this.Variables.Equals(s.Variables)
                && this.Looks.Equals(s.Looks) && this.Scripts.Equals(s.Scripts)
                && this.Sounds.Equals(s.Sounds);
        }