Ejemplo n.º 1
0
        public bool Equals(LevelEditorComponentData other)
        {
            if (wrapper == null && other.wrapper == null)
            {
                return(type == other.type);
            }

            if (wrapper == null || other.wrapper == null)
            {
                return(false);
            }

            return(type == other.type && wrapper.Equals(other.wrapper));
        }