Terraria.DelegateMethods.CompareYReverse C# (CSharp) Method

CompareYReverse() public static method

public static CompareYReverse ( System.Point a, System.Point b ) : int
a System.Point
b System.Point
return int
        public static int CompareYReverse(Point a, Point b)
        {
            return b.Y.CompareTo(a.Y);
        }