diff --git a/osu.Game/Screens/Select/Leaderboards/LeaderboardScore.cs b/osu.Game/Screens/Select/Leaderboards/LeaderboardScore.cs index d02569247f..1c745ff7cb 100644 --- a/osu.Game/Screens/Select/Leaderboards/LeaderboardScore.cs +++ b/osu.Game/Screens/Select/Leaderboards/LeaderboardScore.cs @@ -42,7 +42,7 @@ namespace osu.Game.Screens.Select.Leaderboards private Container flagBadgeContainer; private FillFlowContainer modsContainer; - private readonly int index; + public readonly int Index; public readonly Score Score; private Visibility state; @@ -115,7 +115,7 @@ namespace osu.Game.Screens.Select.Leaderboards public LeaderboardScore(Score score, int i) { Score = score; - index = i; + Index = i; RelativeSizeAxes = Axes.X; Height = height; @@ -138,7 +138,7 @@ namespace osu.Game.Screens.Select.Leaderboards Origin = Anchor.CentreLeft, Font = @"Exo2.0-MediumItalic", TextSize = 22, - Text = index.ToString(), + Text = Index.ToString(), }, }, }, diff --git a/osu.Game/Users/User.cs b/osu.Game/Users/User.cs index 30126e39b8..d3e1f730cc 100644 --- a/osu.Game/Users/User.cs +++ b/osu.Game/Users/User.cs @@ -1,8 +1,6 @@ // Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE -using System.Collections.Generic; - namespace osu.Game.Users { public class User