BusinessLogic.Logic.Points.PointsCalculator.EveryoneLost C# (CSharp) Method

EveryoneLost() private static method

private static EveryoneLost ( IList playerRanks ) : bool
playerRanks IList
return bool
        private static bool EveryoneLost(IList<PlayerRank> playerRanks)
        {
            return playerRanks.All(x => x.GameRank != 1);
        }