Terraria.DelegateMethods.CompareYReverse C# (CSharp) 메소드

CompareYReverse() 공개 정적인 메소드

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