PRoConEvents.MULTIbalancer.DescendingRoundScore C# (CSharp) Method

DescendingRoundScore() public static method

public static DescendingRoundScore ( PlayerModel lhs, PlayerModel rhs ) : int
lhs PlayerModel
rhs PlayerModel
return int
        public static int DescendingRoundScore(PlayerModel lhs, PlayerModel rhs)
        {
            if (lhs == null) {
            return ((rhs == null) ? 0 : -1);
            } else if (rhs == null) {
            return ((lhs == null) ? 0 : 1);
            }

            if (lhs.ScoreRound < rhs.ScoreRound) return 1;
            if (lhs.ScoreRound > rhs.ScoreRound) return -1;
            return 0;
        }
MULTIbalancer