public override ScoreInfo TooltipContent => null; // match aggregate scores can't show statistics that the custom tooltip displays. public MatchLeaderboardScore(APIUserScoreAggregate score, int?rank, bool isOnlineScope = true) : base(score.CreateScoreInfo(), rank, isOnlineScope) { this.score = score; }
public MatchLeaderboardScore(APIUserScoreAggregate score, int?rank, bool allowHighlight = true) : base(score.CreateScoreInfo(), rank, allowHighlight) { this.score = score; }
public MatchLeaderboardScore(APIUserScoreAggregate score, int rank) : base(score.CreateScoreInfo(), rank) { this.score = score; }