PRoConEvents.MULTIbalancer.DescendingKPM C# (CSharp) Method

DescendingKPM() public static method

public static DescendingKPM ( PlayerModel lhs, PlayerModel rhs ) : int
lhs PlayerModel
rhs PlayerModel
return int
        public static int DescendingKPM(PlayerModel lhs, PlayerModel rhs)
        {
            if (lhs == null) {
            return ((rhs == null) ? 0 : -1);
            } else if (rhs == null) {
            return ((lhs == null) ? 0 : 1);
            }
            double lKPM = (lhs.StatsVerified) ? lhs.KPM : lhs.KPMRound;
            double rKPM = (rhs.StatsVerified) ? rhs.KPM : rhs.KPMRound;
            if (lKPM < rKPM) return 1;
            if (lKPM > rKPM) return -1;
            return 0;
        }
MULTIbalancer