Beispiel #1
0
 public MatchLeaderboardScore(APIUserScoreAggregate score, int?rank, bool allowHighlight = true)
     : base(score.CreateScoreInfo(), rank, allowHighlight)
 {
     this.score = score;
 }
        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;
        }
Beispiel #3
0
 public ResultsMatchLeaderboardScore(APIUserScoreAggregate score, int rank)
     : base(score, rank)
 {
 }
Beispiel #4
0
 public MatchLeaderboardScore(APIUserScoreAggregate score, int rank)
     : base(score.CreateScoreInfo(), rank)
 {
     this.score = score;
 }
Beispiel #5
0
 protected override LeaderboardScore CreateDrawableScore(APIUserScoreAggregate model, int index)
 => new ResultsMatchLeaderboardScore(model, index);