Nohal.RleEditor.RleParser.Utils.CIEYxy.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
        public static bool operator !=(CIEYxy item1, CIEYxy item2)
        {
            return (
                       item1.Y != item2.Y
                       || item1.x != item2.x
                       || item1.y != item2.y
                   );
        }